[fdo-commits] r2642 - trunk

svn_fdo at osgeo.org svn_fdo at osgeo.org
Mon Mar 5 15:06:40 EST 2007


Author: gregboone
Date: 2007-03-05 15:06:40 -0500 (Mon, 05 Mar 2007)
New Revision: 2642

Modified:
   trunk/build_thirdparty.sh
Log:
Ticket #5: Update FDO Thirdparty to latest GDAL

Modified: trunk/build_thirdparty.sh
===================================================================
--- trunk/build_thirdparty.sh	2007-03-05 19:42:51 UTC (rev 2641)
+++ trunk/build_thirdparty.sh	2007-03-05 20:06:40 UTC (rev 2642)
@@ -163,7 +163,8 @@
 
 if test "$TYPEACTION" == clean ; then
     make clean
-elif test "$TYPEACTION" == buildinstall || test "$TYPEACTION" == build ; then
+fi
+if test "$TYPEACTION" == buildinstall || test "$TYPEACTION" == build ; then
     if test "$ALLENABLE" == yes ; then
       ./Thirdparty.sh
     elif test "$FDOENABLE" == yes ; then
@@ -177,9 +178,11 @@
     elif test "$GDALENABLE" == yes ; then
       ./Thirdparty_gdal.sh
     fi
-elif test "$TYPEACTION" == buildinstall || test "$TYPEACTION" == install ; then
+fi
+if test "$TYPEACTION" == buildinstall || test "$TYPEACTION" == install ; then
     make install
-elif test "$TYPEACTION" == uninstall ; then
+fi
+if test "$TYPEACTION" == uninstall ; then
     make uninstall
 fi
 



More information about the fdo-commits mailing list