From 50acf0d5a3ccaecf6411cf509f43ae2a8192f6fd Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Wed, 15 Oct 2003 08:12:43 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2470 --- checkin_notes | 8 ++++++++ sched/Makefile.am | 6 ++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/checkin_notes b/checkin_notes index 9c378964d0..c6fb4507f5 100755 --- a/checkin_notes +++ b/checkin_notes @@ -6777,3 +6777,11 @@ David Oct 14 2003 api/ gutil.C,h + +Karl 2003-10-14 + - makefiles: + - fixed some issues when building outside of source tree + - fixed some missing 'make dist' files + - fixed "ln -s start stop" bug + + */Makefile.am diff --git a/sched/Makefile.am b/sched/Makefile.am index 42fb0523cd..87866bc2a9 100644 --- a/sched/Makefile.am +++ b/sched/Makefile.am @@ -102,9 +102,7 @@ fcgi_LDADD = $(LDADD) $(RSA_LIBS) -lfcgi -lfcgi++ $(MYSQL_LIBS) .PHONY: PHONY-start PHONY-start: - test -f start || ln -s $(srcdir)/start start - test -f start + @test -f start || ln -s $(srcdir)/start start && test -f start status stop: PHONY-start - test -f $@ || ln -s start $@ - test -f $@ + @test -f $@ || ln -s start $@ && test -f $@