diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-09-05 15:24:12 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-09-05 15:24:12 +0200 |
commit | 0642da781803160ec93a7b6d39bae921535d7c19 (patch) | |
tree | 7a94a4eb140d5f2a8b240ae2c50446a4f582eeb8 /target/device/KwikByte/Makefile.in | |
parent | 6538b1d1e719778d02830f4d3d2975c36e6555cf (diff) | |
parent | 4a37bf3b9eb6d34a3fb75140234c21417521ae17 (diff) | |
download | buildroot-novena-0642da781803160ec93a7b6d39bae921535d7c19.tar.gz buildroot-novena-0642da781803160ec93a7b6d39bae921535d7c19.zip |
Merge branch 'qstrip' of git://git.busybox.net/~tpetazzoni/git/buildroot
Diffstat (limited to 'target/device/KwikByte/Makefile.in')
-rw-r--r-- | target/device/KwikByte/Makefile.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/target/device/KwikByte/Makefile.in b/target/device/KwikByte/Makefile.in index 347d6ab60..d889bc258 100644 --- a/target/device/KwikByte/Makefile.in +++ b/target/device/KwikByte/Makefile.in @@ -1,17 +1,15 @@ ifeq ($(BR2_TARGET_KWIKBYTE),y) -BOARD_NAME:=$(strip $(subst ",, $(BR2_BOARD_NAME))) -BOARD_PATH:=$(strip $(subst ",, $(BR2_BOARD_PATH))) +BOARD_NAME:=$(call qstrip,$(BR2_BOARD_NAME)) +BOARD_PATH:=$(call qstrip,$(BR2_BOARD_PATH)) # These are set by Config.in -DOWNLOAD_LINUX26_VERSION:=$(strip $(subst ",, $(BR2_DOWNLOAD_LINUX26_VERSION))) -#")) +DOWNLOAD_LINUX26_VERSION:=$(call qstrip,$(BR2_DOWNLOAD_LINUX26_VERSION)) ifeq ($(DOWNLOAD_LINUX26_VERSION),) DOWNLOAD_LINUX26_VERSION=$(LINUX_HEADERS_VERSION) endif -LINUX26_VERSION:=$(strip $(subst ",, $(BR2_LINUX26_VERSION))) -#")) +LINUX26_VERSION:=$(call qstrip,$(BR2_LINUX26_VERSION)) ifeq ($(LINUX26_VERSION),) LINUX26_VERSION=$(LINUX_HEADERS_VERSION) endif |