diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/debian/rules b/debian/rules index 1d7413c35..45a6c604c 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -28,8 +28,8 @@ debian/build-stamp-busybox: | |||
28 | mkdir -p $(bbbd) | 28 | mkdir -p $(bbbd) |
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) "CONFIG_SRC_DIR=../../" applet_source_list) |
32 | (cd $(bbbd); $(MAKE) USE_SYSTEM_PWD_GRP=false "BB_SRC_DIR=../../") | 32 | (cd $(bbbd); $(MAKE) USE_SYSTEM_PWD_GRP=false "CONFIG_SRC_DIR=../../") |
33 | touch debian/build-stamp-busybox | 33 | touch debian/build-stamp-busybox |
34 | 34 | ||
35 | install: build | 35 | install: build |
@@ -39,7 +39,7 @@ install: build | |||
39 | dh_installdirs | 39 | dh_installdirs |
40 | # Do not run 'make install', since we do not want all the symlinks. | 40 | # Do not run 'make install', since we do not want all the symlinks. |
41 | # This just installes the busybox binary... | 41 | # This just installes the busybox binary... |
42 | #(cd $(bbbd); $(MAKE) "BB_SRC_DIR=../../" "PREFIX=../../$(bb)" install) | 42 | #(cd $(bbbd); $(MAKE) "CONFIG_SRC_DIR=../../" "PREFIX=../../$(bb)" install) |
43 | mkdir -p $(bb)/bin/ | 43 | mkdir -p $(bb)/bin/ |
44 | cp $(bbbd)/busybox $(bb)/bin/busybox | 44 | cp $(bbbd)/busybox $(bb)/bin/busybox |
45 | mkdir -p $(bb)/usr/share/doc/busybox/busybox.lineo.com | 45 | mkdir -p $(bb)/usr/share/doc/busybox/busybox.lineo.com |
@@ -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 USE_SYSTEM_PWD_GRP=false "BB_SRC_DIR=../../") | 57 | (cd $(bbsbd); $(MAKE) DOSTATIC=true USE_SYSTEM_PWD_GRP=false "CONFIG_SRC_DIR=../../") |
58 | touch debian/build-stamp-busybox-static | 58 | touch debian/build-stamp-busybox-static |
59 | 59 | ||
60 | install-static: build | 60 | install-static: build |
@@ -64,7 +64,7 @@ install-static: build | |||
64 | dh_installdirs | 64 | dh_installdirs |
65 | # Do not run 'make install', since we do not want all the symlinks. | 65 | # Do not run 'make install', since we do not want all the symlinks. |
66 | # This just installes the busybox binary... | 66 | # This just installes the busybox binary... |
67 | #(cd $(bbsbd); $(MAKE) "BB_SRC_DIR=../../" "PREFIX=../../$(bbs)" install) | 67 | #(cd $(bbsbd); $(MAKE) "CONFIG_SRC_DIR=../../" "PREFIX=../../$(bbs)" install) |
68 | mkdir -p $(bbs)/bin/ | 68 | mkdir -p $(bbs)/bin/ |
69 | cp $(bbsbd)/busybox $(bbs)/bin/busybox | 69 | cp $(bbsbd)/busybox $(bbs)/bin/busybox |
70 | mkdir -p $(bbs)/usr/share/doc/busybox-static/busybox.lineo.com | 70 | mkdir -p $(bbs)/usr/share/doc/busybox-static/busybox.lineo.com |
@@ -94,7 +94,7 @@ debian/build-stamp-busybox-udeb: | |||
94 | mkdir -p $(bbubd) | 94 | mkdir -p $(bbubd) |
95 | cp Makefile $(bbubd) | 95 | cp Makefile $(bbubd) |
96 | cp debian/Config.h-udeb $(bbubd)/Config.h | 96 | cp debian/Config.h-udeb $(bbubd)/Config.h |
97 | (cd $(bbubd); $(MAKE) USE_SYSTEM_PWD_GRP=false "BB_SRC_DIR=../../") | 97 | (cd $(bbubd); $(MAKE) USE_SYSTEM_PWD_GRP=false "CONFIG_SRC_DIR=../../") |
98 | touch debian/build-stamp-busybox-udeb | 98 | touch debian/build-stamp-busybox-udeb |
99 | 99 | ||
100 | install-udeb: build | 100 | install-udeb: build |
@@ -102,7 +102,7 @@ install-udeb: build | |||
102 | dh_testroot | 102 | dh_testroot |
103 | dh_clean -k | 103 | dh_clean -k |
104 | dh_installdirs | 104 | dh_installdirs |
105 | (cd $(bbubd); $(MAKE) "BB_SRC_DIR=../../" "PREFIX=../../$(bbu)" install) | 105 | (cd $(bbubd); $(MAKE) "CONFIG_SRC_DIR=../../" "PREFIX=../../$(bbu)" install) |
106 | mkdir -p $(bbu)/usr/share/man/man1/ | 106 | mkdir -p $(bbu)/usr/share/man/man1/ |
107 | cp $(bbubd)/docs/BusyBox.1 $(bbu)/usr/share/man/man1/busybox.1 | 107 | cp $(bbubd)/docs/BusyBox.1 $(bbu)/usr/share/man/man1/busybox.1 |
108 | 108 | ||