aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-09 18:42:52 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-09 18:42:52 +0000
commit5d6f3440e6a5e0436790886ccfdc023d61bdff56 (patch)
treec7bed067cea2410bf18bb1ae14d8e8372c2d59df
parent305fdfa755c94bdbe54fb9bd3db2f51086f9f2d3 (diff)
downloadbusybox-w32-5d6f3440e6a5e0436790886ccfdc023d61bdff56.tar.gz
busybox-w32-5d6f3440e6a5e0436790886ccfdc023d61bdff56.tar.bz2
busybox-w32-5d6f3440e6a5e0436790886ccfdc023d61bdff56.zip
use 'USE_SYSTEM_PWD_GRP=false' for the Debian packages so the boot-floppies
do not need any of the nss crap installed. As was, things like 'id' would fail. Fixed now (with thanks to Matt Kraai for his help). -Erik
-rwxr-xr-xdebian/rules6
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules
index 98bdf0ea6..5271b97fd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -29,7 +29,7 @@ debian/build-stamp-busybox:
29 cp Makefile $(bbbd) 29 cp Makefile $(bbbd)
30 cp debian/Config.h-deb $(bbbd)/Config.h 30 cp debian/Config.h-deb $(bbbd)/Config.h
31 -(cd $(bbbd); $(MAKE) "BB_SRC_DIR=../../" applet_source_list) 31 -(cd $(bbbd); $(MAKE) "BB_SRC_DIR=../../" applet_source_list)
32 (cd $(bbbd); $(MAKE) "BB_SRC_DIR=../../") 32 (cd $(bbbd); $(MAKE) USE_SYSTEM_PWD_GRP=false "BB_SRC_DIR=../../")
33 touch debian/build-stamp-busybox 33 touch debian/build-stamp-busybox
34 34
35install: build 35install: build
@@ -54,7 +54,7 @@ debian/build-stamp-busybox-static:
54 mkdir -p $(bbsbd) 54 mkdir -p $(bbsbd)
55 cp Makefile $(bbsbd) 55 cp Makefile $(bbsbd)
56 cp debian/Config.h-static $(bbsbd)/Config.h 56 cp debian/Config.h-static $(bbsbd)/Config.h
57 (cd $(bbsbd); $(MAKE) DOSTATIC=true "BB_SRC_DIR=../../") 57 (cd $(bbsbd); $(MAKE) DOSTATIC=true USE_SYSTEM_PWD_GRP=false "BB_SRC_DIR=../../")
58 touch debian/build-stamp-busybox-static 58 touch debian/build-stamp-busybox-static
59 59
60install-static: build 60install-static: build
@@ -95,7 +95,7 @@ debian/build-stamp-busybox-udeb:
95 mkdir -p $(bbubd) 95 mkdir -p $(bbubd)
96 cp Makefile $(bbubd) 96 cp Makefile $(bbubd)
97 cp debian/Config.h-udeb $(bbubd)/Config.h 97 cp debian/Config.h-udeb $(bbubd)/Config.h
98 (cd $(bbubd); $(MAKE) "BB_SRC_DIR=../../") 98 (cd $(bbubd); $(MAKE) USE_SYSTEM_PWD_GRP=false "BB_SRC_DIR=../../")
99 touch debian/build-stamp-busybox-udeb 99 touch debian/build-stamp-busybox-udeb
100 100
101install-udeb: build 101install-udeb: build