From: Roy T. Fielding Date: Thu, 12 Apr 2001 07:56:16 +0000 (+0000) Subject: Remove double-quotes from the list of programs to install to make X-Git-Tag: 2.0.17~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13c3bb929ab2d105e135e4d1702889a699291576;p=thirdparty%2Fapache%2Fhttpd.git Remove double-quotes from the list of programs to install to make it valid shell syntax. Submitted by: Justin Erenkrantz Reviewed by: Roy Fielding git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88820 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/rules.mk b/build/rules.mk index e29bbe440b4..368905f86c1 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -173,7 +173,7 @@ all-p: $(targets) install-p: $(targets) $(install_targets) @if test -n '$(PROGRAMS)'; then \ test -d $(bindir) || $(MKINSTALLDIRS) $(bindir); \ - for i in "$(PROGRAMS)"; do \ + for i in $(PROGRAMS); do \ $(INSTALL_PROGRAM) $$i $(bindir); \ done; \ fi