diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:58 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-08 08:15:58 +0000 |
commit | 4b72854ddeb69855e5f91b640bb75cd73f77528b (patch) | |
tree | a42c051cebeae8df2a2d3bbe17d695d471cea4c0 /target/iso9660/iso9660.mk | |
parent | 0db545ab184144da033174eca721bb866521489d (diff) | |
download | buildroot-novena-4b72854ddeb69855e5f91b640bb75cd73f77528b.tar.gz buildroot-novena-4b72854ddeb69855e5f91b640bb75cd73f77528b.zip |
target/: get rid of unneeded $(strip ..)
Diffstat (limited to 'target/iso9660/iso9660.mk')
-rw-r--r-- | target/iso9660/iso9660.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/iso9660/iso9660.mk b/target/iso9660/iso9660.mk index 74b33b812..778df0365 100644 --- a/target/iso9660/iso9660.mk +++ b/target/iso9660/iso9660.mk @@ -50,7 +50,7 @@ ISO9660_BOOT_MENU:=$(subst ",,$(BR2_TARGET_ROOTFS_ISO9660_BOOT_MENU)) #") ISO9660_OPTS:= -ifeq ($(strip $(BR2_TARGET_ROOTFS_ISO9660_SQUASH)),y) +ifeq ($(BR2_TARGET_ROOTFS_ISO9660_SQUASH),y) ISO9660_OPTS+=-U endif @@ -90,6 +90,6 @@ iso9660root-dirclean: mkisofs-dirclean # Toplevel Makefile options # ############################################################# -ifeq ($(strip $(BR2_TARGET_ROOTFS_ISO9660)),y) +ifeq ($(BR2_TARGET_ROOTFS_ISO9660),y) TARGETS+=iso9660root endif |