From d1e9249b63667f6ea5e86f5372acef4747d31867 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Sun, 26 Nov 2000 10:12:00 +0000 Subject: [PATCH] * builds/compiler/ansi-cc.mk (CLEAN_LIBRARY): Fix rule and conditional. --- ChangeLog | 5 +++++ builds/compiler/ansi-cc.mk | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0ae7f05b0..3f23f5a5f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-11-26 Werner Lemberg + + * builds/compiler/ansi-cc.mk (CLEAN_LIBRARY): Fix rule and + conditional. + 2000-11-23 Werner Lemberg * src/type1/t1load.c (parse_subrs, parse_charstrings): Use decrypt diff --git a/builds/compiler/ansi-cc.mk b/builds/compiler/ansi-cc.mk index 3935ee527..0a59896a3 100644 --- a/builds/compiler/ansi-cc.mk +++ b/builds/compiler/ansi-cc.mk @@ -73,9 +73,10 @@ ANSIFLAGS := # Library linking # -ifndef -CLEAN_LIBRARY = $(DELETE) $(subst $(SEP),$(HOSTSEP),$(PROJECT_LIBRARY) $(NO_OUTPUT) +ifndef CLEAN_LIBRARY + CLEAN_LIBRARY = $(DELETE) $(subst $(SEP),$(HOSTSEP),$(PROJECT_LIBRARY)) \ + $(NO_OUTPUT) endif -LINK_LIBRARY = $(AR) -r $@ $(OBJECTS_LIST) +LINK_LIBRARY = $(AR) -r $@ $(OBJECTS_LIST) # EOF