diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-03-13 20:30:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-03-13 20:30:07 +0000 |
commit | 9c636934a0cbe7c5b1644ed3688a2a2cb3518d3f (patch) | |
tree | 3e8e5db9d2e2a229c2978e55217f263f0a27ae6d /make/jpeg.mk | |
parent | 5b89b722a2c6c723a2b59ab3b950d16e6872eca8 (diff) | |
download | buildroot-novena-9c636934a0cbe7c5b1644ed3688a2a2cb3518d3f.tar.gz buildroot-novena-9c636934a0cbe7c5b1644ed3688a2a2cb3518d3f.zip |
Do not blindly strip all symbols from from all libs. libpthread
needs its symbols for pthread debugging to work. Let it be a
local decision.
Diffstat (limited to 'make/jpeg.mk')
-rw-r--r-- | make/jpeg.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/make/jpeg.mk b/make/jpeg.mk index fa15569e6..e3489b28a 100644 --- a/make/jpeg.mk +++ b/make/jpeg.mk @@ -63,6 +63,7 @@ $(STAGING_DIR)/lib/libjpeg.so.62.0.0: $(JPEG_DIR)/.configured $(TARGET_DIR)/lib/libjpeg.so.62.0.0: $(STAGING_DIR)/lib/libjpeg.so.62.0.0 cp -dpf $(STAGING_DIR)/lib/libjpeg.so* $(TARGET_DIR)/lib/ + -$(STRIP) --strip-unneeded $(TARGET_DIR)/lib/libjpeg.so.62.0.0 jpeg: uclibc $(TARGET_DIR)/lib/libjpeg.so.62.0.0 |