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/12/21 18:04:58 UTC

svn commit: r606252 - /httpd/httpd/branches/2.2.x/build/installwinconf.awk

Author: wrowe
Date: Fri Dec 21 09:04:57 2007
New Revision: 606252

URL: http://svn.apache.org/viewvc?rev=606252&view=rev
Log:
The installer will now create a temp-extras directory

Backports: r606251

Modified:
    httpd/httpd/branches/2.2.x/build/installwinconf.awk

Modified: httpd/httpd/branches/2.2.x/build/installwinconf.awk
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/build/installwinconf.awk?rev=606252&r1=606251&r2=606252&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/build/installwinconf.awk (original)
+++ httpd/httpd/branches/2.2.x/build/installwinconf.awk Fri Dec 21 09:04:57 2007
@@ -36,10 +36,6 @@
 
     if ( sourceroot != "docs/conf/" ) {
         sourceroot = confroot;
-        extrapath = "";
-    }
-    else {
-        extrapath = "extra/";
     }
 
     print "Installing Apache HTTP 2.0 server with" >tstfl;
@@ -70,7 +66,7 @@
         dstfl = confdefault conffile;
 	bswarning = 1;
       } else {
-        srcfl = sourceroot extrapath filelist[conffile];
+        srcfl = sourceroot "extra/" filelist[conffile];
         dstfl = confdefault "extra/" conffile;
         bswarning = 0;
       }