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: I5dfa78a86585e9b885a1a8297828b9cbcd5ba0ec 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/ovirt-host-deploy refs/changes/36/10936/1 diff --git a/Makefile.am b/Makefile.am index b77735d..bcb55a0 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/10936 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5dfa78a86585e9b885a1a8297828b9cbcd5ba0ec Gerrit-PatchSet: 1 Gerrit-Project: ovirt-host-deploy 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