Pārlūkot izejas kodu

renamed variable, removed uppercase config text

John Voltz 17 gadi atpakaļ
vecāks
revīzija
f5b96fc71d
2 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 2 2
      Config.in
  2. 1 1
      Makefile

+ 2 - 2
Config.in

@@ -239,8 +239,8 @@ config BR2_HAVE_INFOPAGES
 	  If you say n here, your target will not contain any
 	  infopage.
 
-config BR2_TARGET_DEV_FILES
-	bool "Development files in target filesystem"
+config BR2_HAVE_DEVFILES
+	bool "development files in target filesystem"
 	default n
 	help
 	  Install headers and static libraries in the

+ 1 - 1
Makefile

@@ -318,7 +318,7 @@ erase-fakeroots:
 	rm -f $(PROJECT_BUILD_DIR)/.fakeroot*
 
 target-devfiles:
-ifeq ($(strip $(BR2_TARGET_DEV_FILES)),y)
+ifeq ($(strip $(BR2_HAVE_DEVFILES)),y)
 	cp -a $(STAGING_DIR)/usr/include $(TARGET_DIR)/usr
 	cp $(STAGING_DIR)/usr/lib/*.a $(TARGET_DIR)/usr/lib
 	cp $(STAGING_DIR)/lib/*.a $(TARGET_DIR)/lib