From: Jeff Trawick Date: Fri, 18 May 2001 08:55:17 +0000 (+0000) Subject: fix syntax error in module installation command X-Git-Tag: 2.0.18~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a5daadd39357b14975c7e0ae720b89d2ad6633d;p=thirdparty%2Fapache%2Fhttpd.git fix syntax error in module installation command git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89148 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/special.mk b/build/special.mk index 3d974f1a727..2ca571a1143 100644 --- a/build/special.mk +++ b/build/special.mk @@ -66,7 +66,7 @@ install-modules: has_mod_so=`echo $$builtin|sed 's/^.*mod_so.*$$/has_mod_so/'`; \ if [ "x$$has_mod_so" = "xhas_mod_so" ]; then \ $(MKINSTALLDIRS) $(libexecdir); \ - @list='$(shared)'; \ + list='$(shared)'; \ for i in $$list; do \ $(SH_LIBTOOL) --mode=install cp $$i $(libexecdir); \ done; \