diff options
| author | forsyth <forsyth@vitanuova.com> | 2009-12-08 14:07:28 +0000 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2009-12-08 14:07:28 +0000 |
| commit | af48bc578e098e272ed04681d8fe21e01482e5d5 (patch) | |
| tree | 484fa7cd3a6911a590cd7f6f80ab3d6da3b6ebd9 | |
| parent | 3e3756a156fea2e239d15d84a753d68a753ccea0 (diff) | |
20091208-1407
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | include/version.h | 2 | ||||
| -rwxr-xr-x | makemk.sh | 3 |
3 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,5 @@ +20091208 + add mkdir -p to makemk.sh to ensure output directories exist [issue 213] 20091127 problems fixed in styxconv(2), which can now convert both ways [rog] 20091119 diff --git a/include/version.h b/include/version.h index 3f78009a..9f1e021d 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20091204)" +#define VERSION "Fourth Edition (20091208)" @@ -43,6 +43,9 @@ echo removing old libraries and binaries rm -f $PLAT/lib/*.a $PLAT/bin/* rm -f utils/cc/y.tab.? +# ensure the output directories exist +mkdir -p $PLAT/lib $PLAT/bin + # libregexp cd $ROOT/utils/libregexp || error cannot find libregexp directory CFILES="regaux.c regcomp.c regerror.c regexec.c regsub.c rregexec.c rregsub.c" |
