diff options
author | joerg <joerg@pkgsrc.org> | 2008-11-11 14:28:22 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-11-11 14:28:22 +0000 |
commit | 0406838fc24b59c64e2098a6b8926f14a4acdf7a (patch) | |
tree | a02912a7bf07e0e6840312f52f6a5e53c95bd6e2 /devel/bmake | |
parent | 585eb0d1b2898e7c7a14b3f3b1681bfbf8b37904 (diff) | |
download | pkgsrc-0406838fc24b59c64e2098a6b8926f14a4acdf7a.tar.gz |
Update to bmake 20081101 snapshot. The more important changes are:
- portability fixes for putenv
- man page updates
- fix processing of .END with -j
- fix some segmentation faults on parse errors
- debug output goes to stderr by default
- first round of fixes for A/UX
- fix crashes on long lines
- faster VarQuote
- fix use of ?= when the LHS contains variable references
Diffstat (limited to 'devel/bmake')
-rw-r--r-- | devel/bmake/files/README | 1 | ||||
-rw-r--r-- | devel/bmake/files/unit-tests/qequals | 8 |
2 files changed, 8 insertions, 1 deletions
diff --git a/devel/bmake/files/README b/devel/bmake/files/README index 154a5066fc5..fb688a33bc6 100644 --- a/devel/bmake/files/README +++ b/devel/bmake/files/README @@ -31,7 +31,6 @@ see the boot-strap script for details. To make much use of bmake you will need the bsd.*.mk macros or my portable *.mk macros. See -http://www.crufty.net/ftp/pub/sjg/bsd-mk.tar.gz http://www.crufty.net/ftp/pub/sjg/mk.tar.gz which will be links to the latest versions. diff --git a/devel/bmake/files/unit-tests/qequals b/devel/bmake/files/unit-tests/qequals new file mode 100644 index 00000000000..6324a50bc6e --- /dev/null +++ b/devel/bmake/files/unit-tests/qequals @@ -0,0 +1,8 @@ +# $Id: qequals,v 1.1.1.1 2008/11/11 14:28:36 joerg Exp $ + +M= i386 +V.i386= OK +V.$M ?= bug + +all: + @echo 'V.$M ?= ${V.$M}' |