diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-05-13 19:59:57 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-05-13 21:42:42 +0200 |
commit | 3515285aba556eec90abe50b41f22880121593f0 (patch) | |
tree | 723bd847c6c5899488c1fb48ca28ea47665c8db7 | |
parent | 854fe7d6742b7330275a62b38e75085181085005 (diff) | |
download | drakx-3515285aba556eec90abe50b41f22880121593f0.tar drakx-3515285aba556eec90abe50b41f22880121593f0.tar.gz drakx-3515285aba556eec90abe50b41f22880121593f0.tar.bz2 drakx-3515285aba556eec90abe50b41f22880121593f0.tar.xz drakx-3515285aba556eec90abe50b41f22880121593f0.zip |
always default to glibc
-rw-r--r-- | Makefile.common | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/Makefile.common b/Makefile.common index ec7066a06..66962cde7 100644 --- a/Makefile.common +++ b/Makefile.common @@ -17,25 +17,13 @@ ARCH := $(patsubst i%86,i386,$(shell uname -m)) ARCH := $(patsubst sparc%,sparc,$(ARCH)) - #- default lib is dietlibc (honoured by main Makefile whenever possible) -L = DIETLIBC -#L = GLIBC + #- default lib is glibc (honoured by main Makefile whenever possible) +L = GLIBC #- default frontend is newt (honoured by main Makefile whenever possible) F = NEWT # F = STDIO - #- override in some situations -ifeq (ia64, $(ARCH)) -L = GLIBC -endif -ifeq (ppc, $(ARCH)) -L = GLIBC -endif -ifeq (x86_64, $(ARCH)) -#L = GLIBC -endif - ifeq (DIETLIBC, $(L)) DIET = $(top_dir)/dietlibc/bin-$(ARCH)/diet endif |