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 /Makefile.inc | |
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 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile.inc b/Makefile.inc index 4fba9a9bf..16a74cceb 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -21,10 +21,14 @@ else LIBDIR = lib64 endif -# -# define options -# -JAPANESE=1 +# diet defines +ifeq (i386, $(ARCH)) +USEDIET=1 +endif +# do we really want to use diet on ppc? +ifeq (ppc, $(ARCH)) +USEDIET=1 +endif # define product name to be imported into the loader and anywhere else # that needs the proper name of the product |