diff options
author | Hamish Moffatt <hamish@cloud.net.au> | 2008-09-11 02:15:07 +0000 |
---|---|---|
committer | Hamish Moffatt <hamish@cloud.net.au> | 2008-09-11 02:15:07 +0000 |
commit | 22258ea860ef86cef98eb3ac491a5f11b9468f96 (patch) | |
tree | 4c9bcd67bd76daafc5f6bb6420dc54f2d81b1674 /package/bridge-utils/bridge.mk | |
parent | 542e7ae3a6ef91ff003eea71eb76eb19ab3477b8 (diff) |
Move project-specific stamp files into a project-specific directory
$(PROJECT_BUILD_DIR)/autotools-stamps. Without this, autotools-using
packages won't be installed into any other projects than the first.
Diffstat (limited to 'package/bridge-utils/bridge.mk')
-rw-r--r-- | package/bridge-utils/bridge.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/bridge-utils/bridge.mk b/package/bridge-utils/bridge.mk index 70fdc3981..35d4292c2 100644 --- a/package/bridge-utils/bridge.mk +++ b/package/bridge-utils/bridge.mk @@ -22,9 +22,9 @@ $(BRIDGE_HOOK_POST_INSTALL): $(BRIDGE_TARGET_INSTALL_TARGET) touch $@ # bridge has no uninstall target -$(BUILD_DIR)/bridge-$(BRIDGE_VERSION)/.stamp_uninstalled: +$(BRIDGE_TARGET_UNINSTALL): $(call MESSAGE,"Uninstalling") rm -f $(addprefix $(TARGET_DIR)/usr/,lib/libbridge.a \ include/libbridge.h man/man8/brctl.8 sbin/brctl) - rm -f $(@D)/.stamp_target_installed + rm -f $(BRIDGE_TARGET_INSTALL_TARGET) $(BRIDGE_HOOK_POST_INSTALL) |