From: Peter Korsgaard Date: Mon, 20 Oct 2008 11:53:08 +0000 (-0000) Subject: neon: don't strip if BR2_ENABLE_DEBUG is enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fc7bf9e3254aec9325a2bbf26d0aece41d434855;p=buildroot.git neon: don't strip if BR2_ENABLE_DEBUG is enabled --- diff --git a/package/neon/neon.mk b/package/neon/neon.mk index 38b2914142..78c1ad35e5 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