diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-02-11 15:01:59 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-02-11 15:01:59 +0000 |
commit | 42491fe8cbc7f7bd736008e67e6ba1e78cda6d2d (patch) | |
tree | 519cf0591bf5c050ae71abac8e8b73b2272b45db | |
parent | 2c019822f7097285eba6c1898ef9f3e996fadc8f (diff) |
small fix
Original commit message from CVS:
small fix
-rw-r--r-- | m4/as-version.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/as-version.m4 b/m4/as-version.m4 index 5b49545..5d0d43c 100644 --- a/m4/as-version.m4 +++ b/m4/as-version.m4 @@ -1,4 +1,4 @@ -dnl version.m4 0.0.4 +dnl version.m4 0.0.5 dnl autostars m4 macro for versioning dnl thomas@apestaart.org dnl @@ -32,13 +32,13 @@ AC_DEFUN(AS_VERSION, VERSION=[$3].[$4].[$5] [$2]_RELEASE=1 dnl execute action - [$7] + ifelse([$7], , :, [$7]) else AC_MSG_NOTICE(configuring [$1] for development with nano $NANO) VERSION=[$3].[$4].[$5].$NANO [$2]_RELEASE=`date +%Y%m%d_%H%M%S` dnl execute action - [$8] + ifelse([$8], , :, [$8]) fi [$2]=$VERSION |