You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2004/06/23 13:45:41 UTC

cvs commit: apr Makefile.in

jorton      2004/06/23 04:45:41

  Modified:    .        Makefile.in
  Log:
  * Makefile.in (install): Install mkdir.sh and awk scripts into
  installbuilddir so the standalone apr-util build can use them.
  
  Revision  Changes    Path
  1.101     +4 -5      apr/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/Makefile.in,v
  retrieving revision 1.100
  retrieving revision 1.101
  diff -d -w -u -r1.100 -r1.101
  --- Makefile.in	31 May 2004 20:30:06 -0000	1.100
  +++ Makefile.in	23 Jun 2004 11:45:41 -0000	1.101
  @@ -82,11 +82,10 @@
   	fi;
   	if [ -f shlibtool ]; then \
   		$(LIBTOOL) --mode=install cp shlibtool $(DESTDIR)$(installbuilddir); \
  -	fi;
  -	if [ -f build/apr_rules.mk ]; then \
  -		cp build/apr_rules.mk $(DESTDIR)$(installbuilddir); \
  -	fi;
  -
  +	fi
  +	for f in mkdir.sh make_exports.awk make_var_export.awk apr_rules.mk; do \
  +	        test -f build/$${f} && cp build/$${f} $(DESTDIR)$(installbuilddir); \
  +	done
   	if [ ! -d $(DESTDIR)$(bindir) ]; then \
   	    $(top_srcdir)/build/mkdir.sh $(DESTDIR)$(bindir); \
   	fi;