diff options
author | Yann E. MORIN <yann.morin.1998@anciens.enib.fr> | 2010-09-20 23:26:09 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-09-30 22:09:01 +0200 |
commit | 57bc22c6b7ebef4b8b203dce6af4966ed719acef (patch) | |
tree | c2cb582c54f61865fbc42db2eaa95e3aad5d1f0b /package/tcl/tcl.mk | |
parent | 855fdcaed1e14fd736a8f16bb1a1a4a62e43fc20 (diff) | |
download | buildroot-novena-57bc22c6b7ebef4b8b203dce6af4966ed719acef.tar.gz buildroot-novena-57bc22c6b7ebef4b8b203dce6af4966ed719acef.zip |
package/tcl: fix for POSIX compliance
Using two '=' for string comparison is a bashism.
Revert to using one, as stated in POSIX 1003.1-2008.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/tcl/tcl.mk')
-rw-r--r-- | package/tcl/tcl.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/tcl/tcl.mk b/package/tcl/tcl.mk index edcc4417a..cf46811cc 100644 --- a/package/tcl/tcl.mk +++ b/package/tcl/tcl.mk @@ -15,10 +15,10 @@ TCL_CONF_OPT = \ define TCL_POST_INSTALL_CLEANUP -$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/usr/lib/libtcl8.4.so - -if [ "$(BR2_PACKAGE_TCL_DEL_ENCODINGS)" == "y" ]; then \ + -if [ "$(BR2_PACKAGE_TCL_DEL_ENCODINGS)" = "y" ]; then \ rm -Rf $(TARGET_DIR)/usr/lib/tcl8.4/encoding/*; \ fi - -if [ "$(BR2_PACKAGE_TCL_SHLIB_ONLY)" == "y" ]; then \ + -if [ "$(BR2_PACKAGE_TCL_SHLIB_ONLY)" = "y" ]; then \ rm -f $(TARGET_DIR)/usr/bin/tclsh8.4; \ fi endef |