소스 검색

neon: don't strip if BR2_ENABLE_DEBUG is enabled

Peter Korsgaard 17 년 전
부모
커밋
fc7bf9e325
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      package/neon/neon.mk

+ 2 - 0
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