From 31b929ed67a6d8b85d614a0b5ce169ee707b3a44 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 15 Apr 2009 20:46:12 +0000 Subject: [PATCH] - Unix build: make it work if "diff" is missing (??) from Michael Tughan svn path=/trunk/boinc/; revision=17821 --- checkin_notes | 7 +++++++ lib/Makefile.am | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 3319ce128e..83c4106c87 100644 --- a/checkin_notes +++ b/checkin_notes @@ -3902,3 +3902,10 @@ David 15 Apr 2009 white_grad.png (new) sched/ sched_plan.cpp + +David 15 Apr 2009 + - Unix build: make it work if "diff" is missing (??) + from Michael Tughan + + lib/ + Makefile.am diff --git a/lib/Makefile.am b/lib/Makefile.am index 8113c19fd3..b640c31499 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -166,11 +166,11 @@ all-local: $(all_local) $(LIBBOINC_STATIC): libboinc.la rm -f $(LIBBOINC_STATIC) - $(LN) .libs/$(LIBBOINC_STATIC) + $(LN) .libs/$(LIBBOINC_STATIC) . libboinc_fcgi.a: libboinc_fcgi.la rm -f $(LIBBOINC_FCGI_STATIC) - $(LN) .libs/$(LIBBOINC_FCGI_STATIC) + $(LN) .libs/$(LIBBOINC_FCGI_STATIC) . endif # end of "if ENABLE_LIBRARIES"