[pisa-src] r2511 - in trunk/tools/testbed/pisa-testbed_vms/plugins/extern: hipl/prepare pisa/prepare

  • From: Samuel Richter <samuel.richter@xxxxxxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Mon, 04 Apr 2011 15:16:38 +0200

Author: richter
Date: Mon Apr  4 15:16:37 2011
New Revision: 2511

Log:
run autoreconf -i if ./configure is missing when preparing hipl and pisa

Modified:
   trunk/tools/testbed/pisa-testbed_vms/plugins/extern/hipl/prepare
   trunk/tools/testbed/pisa-testbed_vms/plugins/extern/pisa/prepare

Modified: trunk/tools/testbed/pisa-testbed_vms/plugins/extern/hipl/prepare
==============================================================================
--- trunk/tools/testbed/pisa-testbed_vms/plugins/extern/hipl/prepare    Mon Apr 
 4 15:14:07 2011        (r2510)
+++ trunk/tools/testbed/pisa-testbed_vms/plugins/extern/hipl/prepare    Mon Apr 
 4 15:16:37 2011        (r2511)
@@ -8,8 +8,8 @@
         mkdir -p "$HIPL_PATH"
         bzr co lp:hipl "$HIPL_PATH"
         cd "$HIPL_PATH"
-        autoreconf -i
     fi
     cd "$HIPL_PATH"
+    [ -x ./configure ] || autoreconf -i
     ./configure && make -j dist
 }

Modified: trunk/tools/testbed/pisa-testbed_vms/plugins/extern/pisa/prepare
==============================================================================
--- trunk/tools/testbed/pisa-testbed_vms/plugins/extern/pisa/prepare    Mon Apr 
 4 15:14:07 2011        (r2510)
+++ trunk/tools/testbed/pisa-testbed_vms/plugins/extern/pisa/prepare    Mon Apr 
 4 15:16:37 2011        (r2511)
@@ -8,9 +8,9 @@
         mkdir -p "$PISA_PATH"
         svn checkout svn+ssh://$USER@pride/srv/projects/pisa/svn/trunk 
"$PISA_PATH"
         cd "$PISA_PATH"
-        autoreconf -i
     fi
     cd "$PISA_PATH"
     echo "using pisa-tree in $PISA_PATH"
+    [ -x ./configure ] || autoreconf -i
     ./configure && make -j dist
 }
-- 
This is the pisa developer mailing list. Please also subscribe to the main pisa 
list at:
//www.freelists.org/list/pisa

Other related posts:

  • » [pisa-src] r2511 - in trunk/tools/testbed/pisa-testbed_vms/plugins/extern: hipl/prepare pisa/prepare - Samuel Richter