summaryrefslogtreecommitdiffstats
path: root/include/package-debug.mk
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-24 23:43:05 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-02-24 23:43:05 +0000
commitc993669cc48bbb91e9561f1cdcf3c91292d8a9aa (patch)
tree8c337e5cfdcd566a9d3e58ee6384f4a1f3831685 /include/package-debug.mk
parent89d4450236c2b433bde34dfd2a65c2ca8436255e (diff)
remove support for DEBUG_DIR, it has lost its purpose since STAGING_DIR_ROOT was added
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19849 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/package-debug.mk')
-rw-r--r--include/package-debug.mk26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/package-debug.mk b/include/package-debug.mk
deleted file mode 100644
index 2a85bfebb..000000000
--- a/include/package-debug.mk
+++ /dev/null
@@ -1,26 +0,0 @@
-#
-# Copyright (C) 2006,2007 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-ifeq ($(DUMP),)
- define BuildTarget/debug
-
- DEBUG_STAMP_$(1) := $(DEBUG_DIR)/stamp/$(1)
-
- ifdef Package/$(1)/install
- ifneq ($(CONFIG_PACKAGE_$(1))$(SDK)$(DEVELOPER),)
- compile: $$(DEBUG_STAMP_$(1))
- endif
- endif
-
- $$(DEBUG_STAMP_$(1)): $(PKG_BUILD_DIR)/.built
- mkdir -p $(DEBUG_DIR)/stamp
- $(call Package/$(1)/install,$(DEBUG_DIR))
- touch $$(DEBUG_STAMP_$(1))
-
-
- endef
-endif