You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by ja...@apache.org on 2002/09/11 16:45:24 UTC

cvs commit: httpd-test/flood/build rules.mk.in

jacekp      2002/09/11 07:45:24

  Modified:    flood    Makefile.in configure.in
               flood/build rules.mk.in
  Log:
  fixed install target + prefix defaults to /usr/local/flood
  
  Revision  Changes    Path
  1.13      +4 -0      httpd-test/flood/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/httpd-test/flood/Makefile.in,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Makefile.in	22 Jul 2002 05:48:02 -0000	1.12
  +++ Makefile.in	11 Sep 2002 14:45:23 -0000	1.13
  @@ -5,6 +5,10 @@
   builddir     = $(shell pwd)
   VPATH        = @srcdir@
   
  +prefix       = @prefix@
  +exec_prefix  = @exec_prefix@
  +bindir       = @bindir@
  +
   targets = flood
   
   PROGRAMS = flood
  
  
  
  1.27      +2 -2      httpd-test/flood/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-test/flood/configure.in,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- configure.in	22 Jul 2002 05:48:02 -0000	1.26
  +++ configure.in	11 Sep 2002 14:45:23 -0000	1.27
  @@ -4,8 +4,8 @@
   dnl Location for config.guess, config.sub, install.sh, etc.
   AC_CONFIG_AUX_DIR(build)
   
  -dnl Override the default prefix with /pkg/flood-0.1
  -AC_PREFIX_DEFAULT(/pkg/flood-0.1)
  +dnl Override the default prefix with /usr/local/flood
  +AC_PREFIX_DEFAULT(/usr/local/flood)
   
   dnl m4 Macros from APR
   sinclude(build/apr_common.m4)
  
  
  
  1.2       +4 -4      httpd-test/flood/build/rules.mk.in
  
  Index: rules.mk.in
  ===================================================================
  RCS file: /home/cvs/httpd-test/flood/build/rules.mk.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- rules.mk.in	17 Jan 2002 01:06:27 -0000	1.1
  +++ rules.mk.in	11 Sep 2002 14:45:23 -0000	1.2
  @@ -89,8 +89,8 @@
   
   # Helper programs
   
  -MKINSTALLDIRS = $(abs_srcdir)/build/mkdir.sh
  -INSTALL = $(LIBTOOL) --mode=install $(abs_srcdir)/build/install.sh -c
  +MKINSTALLDIRS = $(top_srcdir)/build/mkdir.sh
  +INSTALL = $(LIBTOOL) --mode=install $(top_srcdir)/build/install.sh -c
   INSTALL_DATA = $(INSTALL) -m 644
   INSTALL_PROGRAM = $(INSTALL) -m 755 $(INSTALL_PROG_FLAGS)
   
  @@ -197,9 +197,9 @@
   
   local-install: $(TARGETS) $(SHARED_TARGETS) $(INSTALL_TARGETS)
   	@if test -n '$(PROGRAMS)'; then \
  -	    test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \
  +	    test -d $(bindir) || $(MKINSTALLDIRS) $(bindir); \
   	    list='$(PROGRAMS)'; for i in $$list; do \
  -	        $(INSTALL_PROGRAM) $$i $(sbindir); \
  +	        $(INSTALL_PROGRAM) $$i $(bindir); \
   	    done; \
   	fi