packages: remove uninstall commands

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Thomas De Schampheleire
2013-12-05 11:54:08 +01:00
committed by Peter Korsgaard
parent b64273db75
commit eb7bd9ef61
154 changed files with 0 additions and 930 deletions

View File

@@ -99,24 +99,6 @@ LUA_INSTALLED_FILES = \
/usr/lib/liblua.a \
/usr/lib/liblua.so*
define LUA_UNINSTALL_STAGING_CMDS
for i in $(LUA_INSTALLED_FILES); do \
rm -f $(STAGING_DIR)$$i; \
done
endef
define LUA_UNINSTALL_TARGET_CMDS
for i in $(LUA_INSTALLED_FILES); do \
rm -f $(TARGET_DIR)$$i; \
done
endef
define HOST_LUA_UNINSTALL_TARGET_CMDS
for i in $(LUA_INSTALLED_FILES); do \
rm -f $(HOST_DIR)$$i; \
done
endef
define LUA_CLEAN_CMDS
-$(MAKE) -C $(@D) clean
endef