diff options
author | John Beppu <beppu@lbox.org> | 2000-04-13 22:57:45 +0000 |
---|---|---|
committer | John Beppu <beppu@lbox.org> | 2000-04-13 22:57:45 +0000 |
commit | cbd6628c8cc7a0447094db9496a0cfbc55726545 (patch) | |
tree | 48a2a38323314eabc0179857ea9a793793d4cab0 /Makefile | |
parent | 9cf3bfa7c1bf3ad959c61711c9a5ac1969149300 (diff) | |
download | busybox-cbd6628c8cc7a0447094db9496a0cfbc55726545.tar.gz |
+ VERSION wasn't being propagated to the sub-make happening in docs/
so I exported VERSION and invoked make with a -C docs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -21,6 +21,7 @@ PROG := busybox VERSION := 0.43 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") +export VERSION # Set the following to `true' to make a debuggable build. # Leave this set to `false' for production use. @@ -131,7 +132,7 @@ install: busybox busybox.links .PHONY: dist release dist release: distclean - cd docs && $(MAKE) clean all + $(MAKE) -C docs clean all cd ..; \ rm -rf busybox-$(VERSION); \ cp -a busybox busybox-$(VERSION); \ |