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/sqlcipher | |
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/sqlcipher')
-rw-r--r-- | package/sqlcipher/sqlcipher.mk | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/package/sqlcipher/sqlcipher.mk b/package/sqlcipher/sqlcipher.mk index e93d24d127..53b1ec8c8a 100644 --- a/package/sqlcipher/sqlcipher.mk +++ b/package/sqlcipher/sqlcipher.mk @@ -39,18 +39,4 @@ else SQLCIPHER_CONF_OPT += --disable-readline endif -define SQLCIPHER_UNINSTALL_TARGET_CMDS - rm -f $(TARGET_DIR)/usr/bin/sqlite3 - rm -f $(TARGET_DIR)/usr/lib/libsqlite3* - rm -f $(TARGET_DIR)/usr/lib/pkgconfig/sqlite3.pc - rm -f $(TARGET_DIR)/usr/include/sqlite3*.h -endef - -define SQLCIPHER_UNINSTALL_STAGING_CMDS - rm -f $(STAGING_DIR)/usr/bin/sqlite3 - rm -f $(STAGING_DIR)/usr/lib/libsqlite3* - rm -f $(STAGING_DIR)/usr/lib/pkgconfig/sqlite3.pc - rm -f $(STAGING_DIR)/usr/include/sqlite3*.h -endef - $(eval $(autotools-package)) |