|
From: <sv...@va...> - 2005-04-01 08:08:01
|
Author: tom
Date: 2005-04-01 09:07:54 +0100 (Fri, 01 Apr 2005)
New Revision: 3494
Modified:
trunk/nightly/bin/nightly
Log:
Run "make all" before "make install" as older versions of automake
don't put a dependency between the install target and $(BUILT_SOURCES)
so doing a straight install doesn't work.
Modified: trunk/nightly/bin/nightly
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/nightly/bin/nightly 2005-03-31 16:02:07 UTC (rev 3493)
+++ trunk/nightly/bin/nightly 2005-04-01 08:07:54 UTC (rev 3494)
@@ -53,7 +53,7 @@
"cd valgrind && ./autogen.sh && ./configure --prefix=3D$ABT_TOP/=
Inst --with-vex=3D$ABT_TOP/vex" && \
\
runcmd "Building valgrind " \
- "cd valgrind && make install" && \
+ "cd valgrind && make && make install" && \
\
runcmd "Running regression tests " \
"cd valgrind && make regtest"
|