|
From: Tom H. <th...@cy...> - 2005-04-01 08:08:59
|
CVS commit by thughes: 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. M +1 -1 nightly 1.2 --- valgrind/nightly/bin/nightly #1.1:1.2 @@ -34,5 +34,5 @@ echo -n " Building ... " >> log.short -(cd valgrind && make install 2>&1 ) >> log.verbose +(cd valgrind && make && make install 2>&1 ) >> log.verbose echo "done" >> log.short |