Alon Bar-Lev has uploaded a new change for review. Change subject: build: improve handling .gitignore with empty lines during clean ......................................................................
build: improve handling .gitignore with empty lines during clean Change-Id: If2e1a256d3ee4f4806043cd7b3ab4668fd37f67a Signed-off-by: Alon Bar-Lev <alo...@redhat.com> --- M Makefile.am 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/otopi refs/changes/35/10935/1 diff --git a/Makefile.am b/Makefile.am index a43f300..28a45ce 100644 --- a/Makefile.am +++ b/Makefile.am @@ -72,10 +72,10 @@ rm -fr target maintainer-clean-local: - cat "$(srcdir)/m4/.gitignore" | while read f; do \ + sed '/^$$/d' "$(srcdir)/m4/.gitignore" | while read f; do \ rm -f $(srcdir)/m4/$$f; \ done - cat "$(srcdir)/po/.gitignore" | while read f; do \ + sed '/^$$/d' "$(srcdir)/po/.gitignore" | while read f; do \ rm -f $(srcdir)/po/$$f po/$$f; \ done -- To view, visit http://gerrit.ovirt.org/10935 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: If2e1a256d3ee4f4806043cd7b3ab4668fd37f67a Gerrit-PatchSet: 1 Gerrit-Project: otopi Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <alo...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches