
fuankg at apache
Jun 11, 2009, 10:56 AM
Views: 172
Permalink
|
|
svn commit: r783865 - /httpd/mod_ftp/trunk/NWGNUftp-makefile
|
|
Author: fuankg Date: Thu Jun 11 17:56:13 2009 New Revision: 783865 URL: http://svn.apache.org/viewvc?rev=783865&view=rev Log: added missing AWK macro for AP 2.0.x; exported BASEDIR for other NWGNUmakefile if missing with 2.0.x. Modified: httpd/mod_ftp/trunk/NWGNUftp-makefile Modified: httpd/mod_ftp/trunk/NWGNUftp-makefile URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/NWGNUftp-makefile?rev=783865&r1=783864&r2=783865&view=diff ============================================================================== --- httpd/mod_ftp/trunk/NWGNUftp-makefile (original) +++ httpd/mod_ftp/trunk/NWGNUftp-makefile Thu Jun 11 17:56:13 2009 @@ -17,6 +17,10 @@ # Make sure all needed macro's are defined # +ifndef AWK +AWK = awk +endif + ifndef FTPPORT FTPPORT = 8021 endif @@ -24,7 +28,7 @@ FTPROOT = ftproot endif ifndef BASEDIR -BASEDIR = apache2 +export BASEDIR = apache2 endif ifndef BASEVOL BASEVOL = SYS:
|