[Lunar-commits] r25695 - moonbase/trunk/web/apache2

Dave Brown dagbrown at lunar-linux.org
Mon Sep 3 10:33:32 CEST 2007


Author: dagbrown
Date: 2007-09-03 10:33:32 +0200 (Mon, 03 Sep 2007)
New Revision: 25695

Modified:
   moonbase/trunk/web/apache2/BUILD
Log:
Removed a couple of inexplicable lines of code (check out the diff).

What was that prepare_install for?  All it accomplished was removing Apache
before beginning to compile it, which strikes me as a Bad Thing.


Modified: moonbase/trunk/web/apache2/BUILD
===================================================================
--- moonbase/trunk/web/apache2/BUILD	2007-09-03 08:23:59 UTC (rev 25694)
+++ moonbase/trunk/web/apache2/BUILD	2007-09-03 08:33:32 UTC (rev 25695)
@@ -1,7 +1,5 @@
 (
 
-  prepare_install  &&
-
   OPTS="--prefix=/etc/httpd                      \
         --sysconfdir=/etc/httpd/conf             \
         --exec-prefix=/usr                       \
@@ -24,6 +22,7 @@
         --with-apr-util=/usr                     \
         $OPTS"
 
+
   if [ "$USE_WORKER" == "n" ]; then
     OPTS="$OPTS --with-mpm=prefork"
   else
@@ -31,7 +30,7 @@
   fi
 
   echo "CFLAGS=$CFLAGS"     &&
-  echo "OPTS=`echo $OPTS`"  &&
+  echo "OPTS=$OPTS"         &&
   ./configure $OPTS         &&
   default_make              &&
 



More information about the Lunar-commits mailing list