You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2004/04/16 15:33:11 UTC

cvs commit: httpd-apreq-2/glue Makefile.am

joes        2004/04/16 06:33:11

  Modified:    .        MANIFEST.SKIP
               glue     Makefile.am
  Log:
  Use MAKE variable in glue/Makefile.am, not "make".  Also skip t/cgi-bin/ from release packages.
  
  Revision  Changes    Path
  1.4       +1 -0      httpd-apreq-2/MANIFEST.SKIP
  
  Index: MANIFEST.SKIP
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/MANIFEST.SKIP,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MANIFEST.SKIP	30 Oct 2003 02:48:16 -0000	1.3
  +++ MANIFEST.SKIP	16 Apr 2004 13:33:11 -0000	1.4
  @@ -36,3 +36,4 @@
   t/conf/.*\.p[lm]$
   t/htdocs
   t/logs
  +t/cgi-bin/*
  
  
  
  1.5       +4 -4      httpd-apreq-2/glue/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/glue/Makefile.am,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile.am	28 Feb 2004 05:19:38 -0000	1.4
  +++ Makefile.am	16 Apr 2004 13:33:11 -0000	1.5
  @@ -9,16 +9,16 @@
   	cd perl; @PERL@ Makefile.PL -apxs @APACHE2_APXS@
   
   perl_glue: perl/Makefile
  -	cd perl; make
  +	cd perl; $(MAKE)
   
   perl_test: perl/Makefile
  -	cd perl; make test
  +	cd perl; $(MAKE) test
   
   perl_install:
  -	cd perl; make install
  +	cd perl; $(MAKE) install
   
   perl_clean:
  -	cd perl; make clean
  +	cd perl; $(MAKE) clean
   
   if BUILD_PERL_GLUE