Commit eb7bd9ef authored by Thomas De Schampheleire's avatar Thomas De Schampheleire Committed by Peter Korsgaard
Browse files

packages: remove uninstall commands

parent b64273db
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -24,12 +24,6 @@ define ACPID_INSTALL_TARGET_CMDS
	$(INSTALL) -D -m 0755 package/acpid/S02acpid $(TARGET_DIR)/etc/init.d/S02acpid
endef

define ACPID_UNINSTALL_TARGET_CMDS
	rm -f $(TARGET_DIR)/usr/sbin/acpid
	rm -f $(TARGET_DIR)/usr/bin/acpi_listen
	rm -f $(addprefix $(TARGET_DIR)/usr/share/man/man8/,acpid.8 acpi_listen.8)
endef

define ACPID_CLEAN_CMDS
	-$(MAKE) -C $(@D) clean
endef
+0 −5
Original line number Diff line number Diff line
@@ -39,9 +39,4 @@ define AIRCRACK_NG_INSTALL_TARGET_CMDS
		prefix=/usr $(AIRCRACK_NG_MAKE_OPTS) install
endef

define AIRCRACK_NG_UNINSTALL_TARGET_CMDS
	$(TARGET_CONFIGURE_OPTS) $(MAKE1) -C $(@D) DESTDIR=$(TARGET_DIR) \
		$(AIRCRACK_NG_MAKE_OPTS) uninstall
endef

$(eval $(generic-package))
+0 −12
Original line number Diff line number Diff line
@@ -80,16 +80,4 @@ endif
ALSA_LIB_CONF_ENV = CFLAGS="$(ALSA_LIB_CFLAGS)" \
		    LDFLAGS="$(TARGET_LDFLAGS) -lm"

define ALSA_LIB_UNINSTALL_TARGET_CMDS
	-rm -f $(TARGET_DIR)/usr/lib/libasound.so*
	-rm -rf $(TARGET_DIR)/usr/lib/alsa-lib
	-rm -rf $(TARGET_DIR)/usr/share/alsa
endef

define ALSA_LIB_UNINSTALL_STAGING_CMDS
	-rm -f $(STAGING_DIR)/usr/lib/libasound.*
	-rm -rf $(STAGING_DIR)/usr/lib/alsa-lib
	-rm -rf $(STAGING_DIR)/usr/share/alsa
endef

$(eval $(autotools-package))
+0 −4
Original line number Diff line number Diff line
@@ -56,8 +56,4 @@ define ALSA_UTILS_INSTALL_TARGET_CMDS
	fi
endef

define ALSA_UTILS_UNINSTALL_TARGET_CMDS
	rm -f $(addprefix $(TARGET_DIR)/,$(ALSA_UTILS_TARGETS_) $(ALSA_UTILS_TARGETS_y))
endef

$(eval $(autotools-package))
+0 −14
Original line number Diff line number Diff line
@@ -25,18 +25,4 @@ endef

AT_POST_INSTALL_TARGET_HOOKS += AT_INSTALL_INITSCRIPT

define AT_UNINSTALL_TARGET_CMDS
	rm -rf $(addprefix $(TARGET_DIR),/usr/lib/atspool \
					 /usr/lib/atjobs \
					 /etc/at.deny \
					 /etc/init.d/S99at \
					 /usr/bin/at \
					 /usr/bin/atrm \
					 /usr/bin/atq \
					 /usr/sbin/atd \
					 /usr/sbin/atrun)
	rm -f $(addprefix $(TARGET_DIR)/usr/man/man*/, \
		at.1 atq.1 atrm.1 batch.1 at_allow.5 at_deny.5 atd.8 atrun.8)
endef

$(eval $(autotools-package))
Loading