You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2007/05/16 19:46:07 UTC

svn commit: r538666 - /httpd/mod_ftp/trunk/modules/ftp/remake_ftp_protocol

Author: wrowe
Date: Wed May 16 10:46:06 2007
New Revision: 538666

URL: http://svn.apache.org/viewvc?view=rev&rev=538666
Log:
How did SRCDIR and TOP_SRCDIR become disjunct?

Modified:
    httpd/mod_ftp/trunk/modules/ftp/remake_ftp_protocol

Modified: httpd/mod_ftp/trunk/modules/ftp/remake_ftp_protocol
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/modules/ftp/remake_ftp_protocol?view=diff&rev=538666&r1=538665&r2=538666
==============================================================================
--- httpd/mod_ftp/trunk/modules/ftp/remake_ftp_protocol (original)
+++ httpd/mod_ftp/trunk/modules/ftp/remake_ftp_protocol Wed May 16 10:46:06 2007
@@ -2,9 +2,9 @@
 #
 $TOP_SRCDIR='../..';
 
-open FHREPLY,"$SRCDIR/include/mod_ftp.h"
+open FHREPLY,"$TOP_SRCDIR/include/mod_ftp.h"
 	or die "Cannot open FTP its mod_ftp.h: $!";
-open FHCOMMAND,"$SRCDIR/modules/ftp/ftp_commands.c"
+open FHCOMMAND,"$TOP_SRCDIR/modules/ftp/ftp_commands.c"
 	or die "Cannot open FTP its ftp_commands.c: $!";
 
 $t=scalar(gmtime(time));
@@ -18,7 +18,7 @@
  * Do not edit manually; but delete the file and do
  * another gmake (or a make ftp_protocol.h)
  *
- * Generated from $SRCDIR on 
+ * Generated from $TOP_SRCDIR on 
  * $t
  */
 |;