diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:42 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:42 +0000 |
commit | 0e14d4f7ff76b863893b5f8f99c73a7fe943ef0a (patch) | |
tree | 4f9c859d0300954a14da6bcd0c8f937cdc19a6a9 /toolchain/sstrip/sstrip.mk | |
parent | ac1d92c425414bad889c1a60d0d2aee25581b74f (diff) | |
download | buildroot-novena-0e14d4f7ff76b863893b5f8f99c73a7fe943ef0a.tar.gz buildroot-novena-0e14d4f7ff76b863893b5f8f99c73a7fe943ef0a.zip |
toolchain/: get rid of unneeded $(strip ..)
Diffstat (limited to 'toolchain/sstrip/sstrip.mk')
-rw-r--r-- | toolchain/sstrip/sstrip.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolchain/sstrip/sstrip.mk b/toolchain/sstrip/sstrip.mk index cb95e3faa..48abbaa50 100644 --- a/toolchain/sstrip/sstrip.mk +++ b/toolchain/sstrip/sstrip.mk @@ -61,10 +61,10 @@ sstrip_target-dirclean: # ############################################################# -ifeq ($(strip $(BR2_PACKAGE_SSTRIP_HOST)),y) +ifeq ($(BR2_PACKAGE_SSTRIP_HOST),y) TARGETS+=sstrip_host endif -ifeq ($(strip $(BR2_PACKAGE_SSTRIP_TARGET)),y) +ifeq ($(BR2_PACKAGE_SSTRIP_TARGET),y) TARGETS+=sstrip_target endif |