diff options
author | Paul Smith <psmith@gnu.org> | 2006-04-01 06:36:40 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2006-04-01 06:36:40 +0000 |
commit | a8f101d0bc354896e410e218db12b449b0447de7 (patch) | |
tree | b161fc78e688e2c08828116dca05cb148af6e305 /configure.in | |
parent | 367a49591e2b2335f3f5b42e290651d4df77e933 (diff) | |
download | gunmake-a8f101d0bc354896e410e218db12b449b0447de7.tar.gz |
Release GNU make 3.81.
Update NEWS docs.
Enhance the manual to use automake version.texi, and use the canonical
FSF copyright features and statement.
Some $(realpath ...) tests won't work on Windows; leave them out
The jobserver filedescriptor test might fail if some FDs are reserved,
so for now comment out that check.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 501187b..5b914bf 100644 --- a/configure.in +++ b/configure.in @@ -16,7 +16,7 @@ # GNU Make; see the file COPYING. If not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. -AC_INIT([GNU make],[3.81rc2],[bug-make@gnu.org]) +AC_INIT([GNU make],[3.81],[bug-make@gnu.org]) AC_PREREQ(2.59) AC_REVISION([[$Id$]]) @@ -450,7 +450,7 @@ AC_OUTPUT # We only generate the build.sh if we have a build.sh.in; we won't have # one before we've created a distribution. -if test -f build.sh.in; then +if test -f "$srcdir/build.sh.in"; then ./config.status --file build.sh chmod +x build.sh fi |