You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Chuck Murcko <ch...@topsail.org> on 2001/04/12 16:58:53 UTC

Re: cvs commit: httpd-2.0/build rules.mk

I'd wager this is what's broken the install now...

...
make[2]: Leaving directory `/usr/local/src/httpd-2.0/srclib/apr-util'
Making install in pcre
make[2]: Entering directory `/usr/local/src/httpd-2.0/srclib/pcre'
make[3]: Entering directory `/usr/local/src/httpd-2.0/srclib/pcre'
/bin/sh: -c: line 1: syntax error near unexpected token `;'
/bin/sh: -c: line 1: `if test -n ''; then  test -d /usr/local/www/bin || 
/usr/local/src/httpd-2.0/build/mkdir.sh /usr/local/www/bin;  for i in ; 
do  /usr/local/src/httpd-2.0/build/install.sh -c -m 755 $i 
/usr/local/www/bin;  done;  fi'
make[3]: *** [install-p] Error 2
make[3]: Leaving directory `/usr/local/src/httpd-2.0/srclib/pcre'
make[2]: *** [install-recursive] Error 1
make[2]: Leaving directory `/usr/local/src/httpd-2.0/srclib/pcre'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/httpd-2.0/srclib'
make: *** [install-recursive] Error 1

On Thursday, April 12, 2001, at 03:56 AM, fielding@apache.org wrote:

> fielding    01/04/12 00:56:17
>
>   Modified:    build    rules.mk
>   Log:
>   Remove double-quotes from the list of programs to install to make
>   it valid shell syntax.
>
>   Submitted by:	Justin Erenkrantz <je...@ebuilt.com>
>   Reviewed by:	Roy Fielding
>
>   Revision  Changes    Path
>   1.49      +1 -1      httpd-2.0/build/rules.mk
>
>   Index: rules.mk
>   ===================================================================
>   RCS file: /home/cvs/httpd-2.0/build/rules.mk,v
>   retrieving revision 1.48
>   retrieving revision 1.49
>   diff -u -r1.48 -r1.49
>   --- rules.mk	2001/04/11 06:44:05	1.48
>   +++ rules.mk	2001/04/12 07:56:16	1.49
>   @@ -173,7 +173,7 @@
>    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
>
>
>
>

Chuck Murcko
Topsail Group
http://www.topsail.org/