diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-30 19:51:25 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-30 19:51:25 +0000 |
commit | da64115c5af2a3d86c4de4c12a13bb87f7b773a3 (patch) | |
tree | a41b5ee64c5ff4852d091f557be35a55226ff32d /isys/gzlib | |
parent | 8a78faf27b2cbee448ad902887ca8b3d21468825 (diff) | |
download | anaconda-da64115c5af2a3d86c4de4c12a13bb87f7b773a3.tar.gz anaconda-da64115c5af2a3d86c4de4c12a13bb87f7b773a3.tar.xz anaconda-da64115c5af2a3d86c4de4c12a13bb87f7b773a3.zip |
define USEDIET in top-level Makefile.inc. use throughout instead of scattering
into every makefile. fix non-dietlinkage
Diffstat (limited to 'isys/gzlib')
-rw-r--r-- | isys/gzlib/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/isys/gzlib/Makefile b/isys/gzlib/Makefile index 64e2ca3ed..e959dc542 100644 --- a/isys/gzlib/Makefile +++ b/isys/gzlib/Makefile @@ -6,10 +6,7 @@ SOURCES = bits.c gzip.c inflate.c lzw.c trees.c unzip.c util.c zip.c binding.c \ OBJS = $(patsubst %.c,%.o,$(SOURCES)) DOBJS = $(patsubst %.o,%.do,$(OBJS)) -ifeq (i386, $(ARCH)) -DIETLIB=libgunzip-diet.a($(DOBJS)) -endif -ifeq (ppc, $(ARCH)) +ifeq (1, $(USEDIET)) DIETLIB=libgunzip-diet.a($(DOBJS)) endif |