]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove double-quotes from the list of programs to install to make
authorRoy T. Fielding <fielding@apache.org>
Thu, 12 Apr 2001 07:56:16 +0000 (07:56 +0000)
committerRoy T. Fielding <fielding@apache.org>
Thu, 12 Apr 2001 07:56:16 +0000 (07:56 +0000)
it valid shell syntax.

Submitted by: Justin Erenkrantz <jerenkrantz@ebuilt.com>
Reviewed by: Roy Fielding

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88820 13f79535-47bb-0310-9956-ffa450edef68

build/rules.mk

index e29bbe440b4ca8294f0b391e93ab43ce66f8e990..368905f86c11e826ce4f51417f08c2bb165c1ad0 100644 (file)
@@ -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