aboutsummaryrefslogtreecommitdiff
path: root/debian/rules
diff options
context:
space:
mode:
Diffstat (limited to 'debian/rules')
-rwxr-xr-xdebian/rules10
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/rules b/debian/rules
index 47605fa71..82bf9f04a 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,7 +11,7 @@ DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
11VERSION = $(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) 11VERSION = $(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2)
12 12
13ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) 13ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
14 DODEBUG = true 14 CONFIG_DEBUG = true
15endif 15endif
16ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) 16ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
17endif 17endif
@@ -39,7 +39,7 @@ else
39endif 39endif
40 40
41 $(MAKE) dep 41 $(MAKE) dep
42 $(MAKE) DODEBUG=$(DODEBUG) 42 $(MAKE) CONFIG_DEBUG=$(CONFIG_DEBUG)
43 43
44 install -d install-$(PACKAGE_PREFIX)/bin 44 install -d install-$(PACKAGE_PREFIX)/bin
45 install busybox install-$(PACKAGE_PREFIX)/bin/busybox 45 install busybox install-$(PACKAGE_PREFIX)/bin/busybox
@@ -57,7 +57,7 @@ else
57endif 57endif
58 58
59 $(MAKE) dep 59 $(MAKE) dep
60 $(MAKE) DODEBUG=$(DODEBUG) 60 $(MAKE) CONFIG_DEBUG=$(CONFIG_DEBUG)
61 61
62 install -d install-$(PACKAGE_PREFIX)-static/bin 62 install -d install-$(PACKAGE_PREFIX)-static/bin
63 install busybox install-$(PACKAGE_PREFIX)-static/bin/busybox 63 install busybox install-$(PACKAGE_PREFIX)-static/bin/busybox
@@ -75,7 +75,7 @@ else
75endif 75endif
76 76
77 $(MAKE) dep 77 $(MAKE) dep
78 $(MAKE) DODEBUG=$(DODEBUG) 78 $(MAKE) CONFIG_DEBUG=$(CONFIG_DEBUG)
79 79
80 $(MAKE) PREFIX=$(CURDIR)/install-$(PACKAGE_PREFIX)-udeb install 80 $(MAKE) PREFIX=$(CURDIR)/install-$(PACKAGE_PREFIX)-udeb install
81 81
@@ -89,7 +89,7 @@ ifneq ($(wildcard ./debian/config-net-udeb-$(DEB_HOST_ARCH)),)
89 cp ./debian/config-net-udeb-$(DEB_HOST_ARCH) .config 89 cp ./debian/config-net-udeb-$(DEB_HOST_ARCH) .config
90 90
91 $(MAKE) dep 91 $(MAKE) dep
92 $(MAKE) DODEBUG=$(DODEBUG) 92 $(MAKE) CONFIG_DEBUG=$(CONFIG_DEBUG)
93 93
94 $(MAKE) PREFIX=$(CURDIR)/install-$(PACKAGE_PREFIX)-net-udeb install 94 $(MAKE) PREFIX=$(CURDIR)/install-$(PACKAGE_PREFIX)-net-udeb install
95endif 95endif