diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-01 21:22:30 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-01 21:22:30 +0000 |
commit | fb29bcf6a27036cce94240ae6a98307e40d7afb2 (patch) | |
tree | 5c0236df2db518c98a4042e1580d07fdc7625f01 /libm/Makefile | |
parent | 1f7a6c0f2d9ef27f9f4196662636e7c8b97df392 (diff) | |
download | uClibc-alpine-fb29bcf6a27036cce94240ae6a98307e40d7afb2.tar.bz2 uClibc-alpine-fb29bcf6a27036cce94240ae6a98307e40d7afb2.tar.xz |
Remove erroneous allow-shlib-undefined
Diffstat (limited to 'libm/Makefile')
-rw-r--r-- | libm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/Makefile b/libm/Makefile index bd4c04adf..28f672f9f 100644 --- a/libm/Makefile +++ b/libm/Makefile @@ -93,8 +93,8 @@ $(LIBM): ar-target shared: all if [ -f $(LIBM) ] ; then \ $(TARGET_CC) $(TARGET_LDFLAGS) -nostdlib -shared -o $(LIBM_SHARED_FULLNAME) \ - -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBM) \ - -Wl,--no-undefined -Wl,--allow-shlib-undefined -lc; \ + -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive \ + $(LIBM) -Wl,--no-undefined -lc; \ install -d $(TOPDIR)lib; \ rm -f $(TOPDIR)lib/$(LIBM_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBM_SHARED).$(MAJOR_VERSION); \ install -m 644 $(LIBM_SHARED_FULLNAME) $(TOPDIR)lib; \ |