diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-03-04 12:33:22 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-03-04 12:33:22 +0100 |
commit | 088de3d24f58c8bb8f8a2ac25c5da373a7e3a1f2 (patch) | |
tree | dc16a997bde146a2b8fab50ea6aae742f9874fe6 /Objective-C | |
parent | 17a4d31014692f959a2a73f4107f34d6f6763423 (diff) |
Build system: Don't break on non-GNUstep systems when compiling libobjcl for the second time.
darcs-hash:49d9746e4c8e84ee6c4b6253dbb54fa93eaec836
Diffstat (limited to 'Objective-C')
-rw-r--r-- | Objective-C/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objective-C/GNUmakefile b/Objective-C/GNUmakefile index eaf153c..770c12f 100644 --- a/Objective-C/GNUmakefile +++ b/Objective-C/GNUmakefile @@ -73,7 +73,7 @@ clean: $(FFI_CLEAN) distclean: clean obj/libobjcl.dylib: $(FFI_DEPS) obj/libobjcl.dylib.$(VERSION) - ln -s libobjcl.dylib.$(VERSION) $@ + ln -s -f libobjcl.dylib.$(VERSION) $@ obj/libobjcl.dylib.$(VERSION): $(libobjcl_OBJ_FILES) make -p obj |