diff options
author | Karl Berry <karl@freefriends.org> | 2017-10-03 00:22:22 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-10-03 00:22:22 +0000 |
commit | a916c9d03143ffbf0d365ee74869b087b3341ac9 (patch) | |
tree | df509c33e52e4728c4a0cb1307dcc7c39f5f9dda /Build/source/build-aux | |
parent | 0cffcbd68f787f199992c4ad79dde5cd7813f03a (diff) |
tl-update-auto
git-svn-id: svn://tug.org/texlive/trunk@45458 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/build-aux')
-rwxr-xr-x | Build/source/build-aux/config.guess | 18 | ||||
-rwxr-xr-x | Build/source/build-aux/config.sub | 4 |
2 files changed, 17 insertions, 5 deletions
diff --git a/Build/source/build-aux/config.guess b/Build/source/build-aux/config.guess index 8bd1095f112..ba1c1439a9f 100755 --- a/Build/source/build-aux/config.guess +++ b/Build/source/build-aux/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-09-16' +timestamp='2017-09-26' # 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 @@ -1400,8 +1400,20 @@ EOF exit ;; esac +echo "$0: unable to guess system type" >&2 + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}" in + mips:Linux | mips64:Linux) + # If we got here on MIPS GNU/Linux, output extra information. + cat >&2 <<EOF + +NOTE: MIPS GNU/Linux systems require a C compiler to fully recognize +the system type. Please install a C compiler and try again. +EOF + ;; +esac + cat >&2 <<EOF -$0: unable to guess system type This script (version $timestamp), has failed to recognize the operating system you are using. If your script is old, overwrite *all* @@ -1441,7 +1453,7 @@ EOF exit 1 # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" diff --git a/Build/source/build-aux/config.sub b/Build/source/build-aux/config.sub index 95dc3d07248..c6950fd68ab 100755 --- a/Build/source/build-aux/config.sub +++ b/Build/source/build-aux/config.sub @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-09-16' +timestamp='2017-09-26' # 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 @@ -1829,7 +1829,7 @@ echo $basic_machine$os exit # Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) +# eval: (add-hook 'write-file-functions 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" |