diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-07-30 17:35:13 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2009-09-05 14:43:17 +0200 |
commit | 79c213fbe5aa188e60563b88708e267cfe5bf4ec (patch) | |
tree | 1fbaf847e0ae431d0156fd5b4e69543b463cdbe9 /target/generic | |
parent | 5c4555d1f54f4ede48729f78119d12b696f72d76 (diff) | |
download | buildroot-novena-79c213fbe5aa188e60563b88708e267cfe5bf4ec.tar.gz buildroot-novena-79c213fbe5aa188e60563b88708e267cfe5bf4ec.zip |
target: use qstrip
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'target/generic')
-rw-r--r-- | target/generic/Makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/target/generic/Makefile.in b/target/generic/Makefile.in index 3541264c8..084acf48b 100644 --- a/target/generic/Makefile.in +++ b/target/generic/Makefile.in @@ -7,10 +7,8 @@ TARGET_SKELETON=target/generic/target_busybox_skeleton TARGET_DEVICE_TABLE=target/generic/mini_device_table.txt endif -TARGET_GENERIC_GETTY:=$(strip $(subst ",, $(BR2_TARGET_GENERIC_GETTY_PORT))) -#")) -TARGET_GENERIC_GETTY_BAUDRATE:=$(strip $(subst ",, $(BR2_TARGET_GENERIC_GETTY_BAUDRATE))) -#")) +TARGET_GENERIC_GETTY:=$(call qstrip,$(BR2_TARGET_GENERIC_GETTY_PORT)) +TARGET_GENERIC_GETTY_BAUDRATE:=$(call qstrip,$(BR2_TARGET_GENERIC_GETTY_BAUDRATE)) target-generic-getty: $(SED) '/# GENERIC_SERIAL$$/s~^.*#~$(TARGET_GENERIC_GETTY)::respawn:/sbin/getty -L $(TARGET_GENERIC_GETTY) $(TARGET_GENERIC_GETTY_BAUDRATE) vt100 #~' \ |