From: Paul Eggert Date: Sun, 26 Nov 2006 06:09:44 +0000 (+0000) Subject: (check-local): Quote $file a bit better. X-Git-Tag: v1.3.12~57 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=c37f9386c672995a0cedc19f93d8505a0c241059;p=debian%2Fgzip (check-local): Quote $file a bit better. --- diff --git a/Makefile.am b/Makefile.am index 3d7adfb..48c774a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -63,7 +63,7 @@ FILES_TO_CHECK = $(bin_SCRIPTS) $(gzip_LDADD) \ $(top_srcdir)/ChangeLog $(top_srcdir)/configure $(top_srcdir)/gzip.c check-local: $(FILES_TO_CHECK) for file in $(FILES_TO_CHECK); do \ - ./gzip -cv $$file | ./gzip -d | cmp - "$$file" || exit; \ + ./gzip -cv -- "$$file" | ./gzip -d | cmp - "$$file" || exit; \ done @echo 'Test succeeded.'