aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbeppu <beppu@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-13 22:57:45 +0000
committerbeppu <beppu@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-04-13 22:57:45 +0000
commiteac4ddeeb379d39d221514002548fa0f08d82c33 (patch)
tree48a2a38323314eabc0179857ea9a793793d4cab0
parent9c24ee20ab75047beebcf1a5766fdbdbd82ba662 (diff)
downloadbusybox-w32-eac4ddeeb379d39d221514002548fa0f08d82c33.tar.gz
busybox-w32-eac4ddeeb379d39d221514002548fa0f08d82c33.tar.bz2
busybox-w32-eac4ddeeb379d39d221514002548fa0f08d82c33.zip
+ VERSION wasn't being propagated to the sub-make happening in docs/
so I exported VERSION and invoked make with a -C docs git-svn-id: svn://busybox.net/trunk/busybox@452 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e2d98549f..bc37b4a00 100644
--- a/Makefile
+++ b/Makefile
@@ -21,6 +21,7 @@
21PROG := busybox 21PROG := busybox
22VERSION := 0.43 22VERSION := 0.43
23BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") 23BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
24export VERSION
24 25
25# Set the following to `true' to make a debuggable build. 26# Set the following to `true' to make a debuggable build.
26# Leave this set to `false' for production use. 27# Leave this set to `false' for production use.
@@ -131,7 +132,7 @@ install: busybox busybox.links
131 132
132.PHONY: dist release 133.PHONY: dist release
133dist release: distclean 134dist release: distclean
134 cd docs && $(MAKE) clean all 135 $(MAKE) -C docs clean all
135 cd ..; \ 136 cd ..; \
136 rm -rf busybox-$(VERSION); \ 137 rm -rf busybox-$(VERSION); \
137 cp -a busybox busybox-$(VERSION); \ 138 cp -a busybox busybox-$(VERSION); \