summaryrefslogtreecommitdiffstats
path: root/package/neon
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2008-10-20 11:53:08 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2008-10-20 11:53:08 +0000
commitfc7bf9e3254aec9325a2bbf26d0aece41d434855 (patch)
tree75c81653aeda3f2fe8176373c9a3186eafcc9e53 /package/neon
parent084e855d055022afa32515c95e21e30e2ff49d60 (diff)
downloadbuildroot-novena-fc7bf9e3254aec9325a2bbf26d0aece41d434855.tar.gz
buildroot-novena-fc7bf9e3254aec9325a2bbf26d0aece41d434855.zip
neon: don't strip if BR2_ENABLE_DEBUG is enabled
Diffstat (limited to 'package/neon')
-rw-r--r--package/neon/neon.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/package/neon/neon.mk b/package/neon/neon.mk
index 38b291414..78c1ad35e 100644
--- a/package/neon/neon.mk
+++ b/package/neon/neon.mk
@@ -28,7 +28,9 @@ endif
$(eval $(call AUTOTARGETS,package,neon))
+ifeq ($(BR2_ENABLE_DEBUG),)
# neon doesn't have an install-strip target, so do it afterwards
$(NEON_HOOK_POST_INSTALL): $(NEON_TARGET_INSTALL_TARGET)
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libneon.so
touch $@
+endif