diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-08-05 17:40:22 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-08-05 17:40:48 -0700 |
commit | ba8eb994f86206f69cbf9743a67b9d86ef9b1d8f (patch) | |
tree | 2ea9d68624a5061629897ef28116ca528f6c8cd2 /build-aux | |
parent | 56683b139b8480198b167ef61cf1b32c528d1070 (diff) | |
download | emacs-ba8eb994f86206f69cbf9743a67b9d86ef9b1d8f.tar.gz |
Update from gnulib
This incorporates:
2018-08-05 Fix link error regarding 'rpl_environ'
* build-aux/config.guess, lib/unistd.in.h, lib/warn-on-use.h:
* m4/extern-inline.m4: Copy from Gnulib.
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/config.guess | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/config.guess b/build-aux/config.guess index ba6af63cc44..d4fb3213ec7 100755 --- a/build-aux/config.guess +++ b/build-aux/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2018 Free Software Foundation, Inc. -timestamp='2018-07-18' +timestamp='2018-08-02' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -126,7 +126,7 @@ set_cc_for_build() { # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then +if test -f /.attbin/uname ; then PATH=$PATH:/.attbin ; export PATH fi |