diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2013-12-05 11:54:08 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-12-06 09:40:40 +0100 |
commit | eb7bd9ef617e5ddc8241981e7896d5b3f30ed9ee (patch) | |
tree | 040bfee55c1be4ce8616faecf11e83d224cc100a /package/bash/bash.mk | |
parent | b64273db75307a8ad3c30202b45582b8a2b894e8 (diff) | |
download | buildroot-eb7bd9ef617e5ddc8241981e7896d5b3f30ed9ee.tar.gz buildroot-eb7bd9ef617e5ddc8241981e7896d5b3f30ed9ee.zip |
packages: remove uninstall commands
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/bash/bash.mk')
-rw-r--r-- | package/bash/bash.mk | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/package/bash/bash.mk b/package/bash/bash.mk index 0c8a954b20..387c3e930b 100644 --- a/package/bash/bash.mk +++ b/package/bash/bash.mk @@ -41,14 +41,4 @@ define BASH_INSTALL_TARGET_CMDS ln -sf bash $(TARGET_DIR)/bin/sh endef -# Restore the old shell file/link if there was one -define BASH_UNINSTALL_TARGET_CMDS - $(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) \ - -C $(BASH_DIR) exec_prefix=/ uninstall - rm -f $(TARGET_DIR)/bin/sh - if [ -e $(TARGET_DIR)/bin/sh.prebash ]; then \ - mv -f $(TARGET_DIR)/bin/sh.prebash $(TARGET_DIR)/bin/sh; \ - fi -endef - $(eval $(autotools-package)) |