From 713a738c1b7e7ed5eacd4ebfdab7c34b0325c08f Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 6 Nov 2017 01:22:08 +0000 Subject: tl-update-auto git-svn-id: svn://tug.org/texlive/trunk@45706 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/build-aux/config.guess | 48 ++++++++++---------- Build/source/build-aux/config.sub | 5 +-- .../freetype-src/builds/unix/config.guess | 48 ++++++++++---------- .../freetype2/freetype-src/builds/unix/config.sub | 5 +-- Build/source/libs/icu/icu-src/source/config.guess | 48 ++++++++++---------- Build/source/libs/icu/icu-src/source/config.sub | 5 +-- Build/source/utils/asymptote/config.guess | 48 ++++++++++---------- Build/source/utils/asymptote/config.sub | 5 +-- Master/doc.html | 51 ++++++++++------------ Master/tlpkg/installer/config.guess | 48 ++++++++++---------- 10 files changed, 152 insertions(+), 159 deletions(-) diff --git a/Build/source/build-aux/config.guess b/Build/source/build-aux/config.guess index 2773ac4f5ed..109c726398b 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-11-01' +timestamp='2017-11-04' # 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 @@ -39,7 +39,7 @@ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -127,10 +127,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +UNAME_MACHINE=`uname -m 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`uname -r 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`uname -s 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`uname -v 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) @@ -168,10 +168,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + UNAME_MACHINE_ARCH=`uname -p 2>/dev/null || \ /sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || \ - echo unknown)` + echo unknown` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; @@ -347,7 +347,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then + if test "`/bin/universe 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd @@ -1094,7 +1094,7 @@ EOF UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + UNAME_REL=`/bin/uname -X|grep Release|sed -e 's/.*= //'` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 @@ -1188,7 +1188,7 @@ EOF exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv @@ -1374,7 +1374,7 @@ EOF echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; @@ -1429,20 +1429,20 @@ provide the necessary information to handle your system. config.guess timestamp = $timestamp -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` +uname -m = `uname -m 2>/dev/null || echo unknown` +uname -r = `uname -r 2>/dev/null || echo unknown` +uname -s = `uname -s 2>/dev/null || echo unknown` +uname -v = `uname -v 2>/dev/null || echo unknown` -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` +/usr/bin/uname -p = `/usr/bin/uname -p 2>/dev/null` +/bin/uname -X = `/bin/uname -X 2>/dev/null` -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` +hostinfo = `hostinfo 2>/dev/null` +/bin/universe = `/bin/universe 2>/dev/null` +/usr/bin/arch -k = `/usr/bin/arch -k 2>/dev/null` +/bin/arch = `/bin/arch 2>/dev/null` +/usr/bin/oslevel = `/usr/bin/oslevel 2>/dev/null` +/usr/convex/getsysinfo = `/usr/convex/getsysinfo 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} diff --git a/Build/source/build-aux/config.sub b/Build/source/build-aux/config.sub index bbad4c45e5d..fb579478695 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-11-01' +timestamp='2017-11-04' # 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 @@ -57,7 +57,7 @@ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -313,7 +313,6 @@ case $basic_machine in | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | wasm32 \ - | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown diff --git a/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess b/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess index 2773ac4f5ed..109c726398b 100755 --- a/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess +++ b/Build/source/libs/freetype2/freetype-src/builds/unix/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-11-01' +timestamp='2017-11-04' # 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 @@ -39,7 +39,7 @@ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -127,10 +127,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +UNAME_MACHINE=`uname -m 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`uname -r 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`uname -s 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`uname -v 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) @@ -168,10 +168,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + UNAME_MACHINE_ARCH=`uname -p 2>/dev/null || \ /sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || \ - echo unknown)` + echo unknown` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; @@ -347,7 +347,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then + if test "`/bin/universe 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd @@ -1094,7 +1094,7 @@ EOF UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + UNAME_REL=`/bin/uname -X|grep Release|sed -e 's/.*= //'` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 @@ -1188,7 +1188,7 @@ EOF exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv @@ -1374,7 +1374,7 @@ EOF echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; @@ -1429,20 +1429,20 @@ provide the necessary information to handle your system. config.guess timestamp = $timestamp -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` +uname -m = `uname -m 2>/dev/null || echo unknown` +uname -r = `uname -r 2>/dev/null || echo unknown` +uname -s = `uname -s 2>/dev/null || echo unknown` +uname -v = `uname -v 2>/dev/null || echo unknown` -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` +/usr/bin/uname -p = `/usr/bin/uname -p 2>/dev/null` +/bin/uname -X = `/bin/uname -X 2>/dev/null` -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` +hostinfo = `hostinfo 2>/dev/null` +/bin/universe = `/bin/universe 2>/dev/null` +/usr/bin/arch -k = `/usr/bin/arch -k 2>/dev/null` +/bin/arch = `/bin/arch 2>/dev/null` +/usr/bin/oslevel = `/usr/bin/oslevel 2>/dev/null` +/usr/convex/getsysinfo = `/usr/convex/getsysinfo 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} diff --git a/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub b/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub index bbad4c45e5d..fb579478695 100755 --- a/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub +++ b/Build/source/libs/freetype2/freetype-src/builds/unix/config.sub @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-11-01' +timestamp='2017-11-04' # 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 @@ -57,7 +57,7 @@ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -313,7 +313,6 @@ case $basic_machine in | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | wasm32 \ - | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown diff --git a/Build/source/libs/icu/icu-src/source/config.guess b/Build/source/libs/icu/icu-src/source/config.guess index 2773ac4f5ed..109c726398b 100755 --- a/Build/source/libs/icu/icu-src/source/config.guess +++ b/Build/source/libs/icu/icu-src/source/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-11-01' +timestamp='2017-11-04' # 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 @@ -39,7 +39,7 @@ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -127,10 +127,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +UNAME_MACHINE=`uname -m 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`uname -r 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`uname -s 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`uname -v 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) @@ -168,10 +168,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + UNAME_MACHINE_ARCH=`uname -p 2>/dev/null || \ /sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || \ - echo unknown)` + echo unknown` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; @@ -347,7 +347,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then + if test "`/bin/universe 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd @@ -1094,7 +1094,7 @@ EOF UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + UNAME_REL=`/bin/uname -X|grep Release|sed -e 's/.*= //'` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 @@ -1188,7 +1188,7 @@ EOF exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv @@ -1374,7 +1374,7 @@ EOF echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; @@ -1429,20 +1429,20 @@ provide the necessary information to handle your system. config.guess timestamp = $timestamp -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` +uname -m = `uname -m 2>/dev/null || echo unknown` +uname -r = `uname -r 2>/dev/null || echo unknown` +uname -s = `uname -s 2>/dev/null || echo unknown` +uname -v = `uname -v 2>/dev/null || echo unknown` -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` +/usr/bin/uname -p = `/usr/bin/uname -p 2>/dev/null` +/bin/uname -X = `/bin/uname -X 2>/dev/null` -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` +hostinfo = `hostinfo 2>/dev/null` +/bin/universe = `/bin/universe 2>/dev/null` +/usr/bin/arch -k = `/usr/bin/arch -k 2>/dev/null` +/bin/arch = `/bin/arch 2>/dev/null` +/usr/bin/oslevel = `/usr/bin/oslevel 2>/dev/null` +/usr/convex/getsysinfo = `/usr/convex/getsysinfo 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} diff --git a/Build/source/libs/icu/icu-src/source/config.sub b/Build/source/libs/icu/icu-src/source/config.sub index bbad4c45e5d..fb579478695 100755 --- a/Build/source/libs/icu/icu-src/source/config.sub +++ b/Build/source/libs/icu/icu-src/source/config.sub @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-11-01' +timestamp='2017-11-04' # 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 @@ -57,7 +57,7 @@ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -313,7 +313,6 @@ case $basic_machine in | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | wasm32 \ - | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown diff --git a/Build/source/utils/asymptote/config.guess b/Build/source/utils/asymptote/config.guess index 2773ac4f5ed..109c726398b 100644 --- a/Build/source/utils/asymptote/config.guess +++ b/Build/source/utils/asymptote/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-11-01' +timestamp='2017-11-04' # 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 @@ -39,7 +39,7 @@ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -127,10 +127,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +UNAME_MACHINE=`uname -m 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`uname -r 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`uname -s 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`uname -v 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) @@ -168,10 +168,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + UNAME_MACHINE_ARCH=`uname -p 2>/dev/null || \ /sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || \ - echo unknown)` + echo unknown` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; @@ -347,7 +347,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then + if test "`/bin/universe 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd @@ -1094,7 +1094,7 @@ EOF UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + UNAME_REL=`/bin/uname -X|grep Release|sed -e 's/.*= //'` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 @@ -1188,7 +1188,7 @@ EOF exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv @@ -1374,7 +1374,7 @@ EOF echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; @@ -1429,20 +1429,20 @@ provide the necessary information to handle your system. config.guess timestamp = $timestamp -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` +uname -m = `uname -m 2>/dev/null || echo unknown` +uname -r = `uname -r 2>/dev/null || echo unknown` +uname -s = `uname -s 2>/dev/null || echo unknown` +uname -v = `uname -v 2>/dev/null || echo unknown` -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` +/usr/bin/uname -p = `/usr/bin/uname -p 2>/dev/null` +/bin/uname -X = `/bin/uname -X 2>/dev/null` -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` +hostinfo = `hostinfo 2>/dev/null` +/bin/universe = `/bin/universe 2>/dev/null` +/usr/bin/arch -k = `/usr/bin/arch -k 2>/dev/null` +/bin/arch = `/bin/arch 2>/dev/null` +/usr/bin/oslevel = `/usr/bin/oslevel 2>/dev/null` +/usr/convex/getsysinfo = `/usr/convex/getsysinfo 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} diff --git a/Build/source/utils/asymptote/config.sub b/Build/source/utils/asymptote/config.sub index bbad4c45e5d..fb579478695 100644 --- a/Build/source/utils/asymptote/config.sub +++ b/Build/source/utils/asymptote/config.sub @@ -2,7 +2,7 @@ # Configuration validation subroutine script. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-11-01' +timestamp='2017-11-04' # 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 @@ -57,7 +57,7 @@ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -313,7 +313,6 @@ case $basic_machine in | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | visium \ | wasm32 \ - | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown diff --git a/Master/doc.html b/Master/doc.html index bdeb52290b9..6691257032d 100644 --- a/Master/doc.html +++ b/Master/doc.html @@ -4737,11 +4737,6 @@ Format DNA base sequences dnaseq.pdf. -
  • dnp: -subfont numbers for DNP font encoding -c90.pdf. -
  • -
  • docbytex: Creating documentation from source code docby-e.pdf, @@ -5091,7 +5086,7 @@ Construct Dynkin tree diagrams

    E

    -
      +
      1. e-french: Comprehensive LaTeX support for French-language typesetting @@ -5945,7 +5940,7 @@ Extend the standard classes' size options

        F

        -
          +
          1. facsimile: Document class for preparing faxes @@ -6575,6 +6570,7 @@ Fonts for typesetting in Church Slavonic language
          2. fontspec: Advanced font selection in XeLaTeX and LuaLaTeX +fontspec-code.pdf, fontspec.pdf.
          3. @@ -6584,6 +6580,7 @@ Print font tables from a LaTeX document
          4. fontware: +Tools for virtual font metrics pltotf.man1.pdf, tftopl.man1.pdf, vftovp.man1.pdf, @@ -6815,7 +6812,7 @@ Get first and last words of a page

            G

            -
              +
              1. g-brief: Letter document class @@ -7528,7 +7525,7 @@ Bundle of classes for "La Gazette des Mathematiciens"

                H

                -
                  +
                  1. h2020proposal: LaTeX class and template for EU H2020 RIA proposal @@ -7877,7 +7874,7 @@ Basic support for multiple languages in Plain TeX

                    I

                    -
                      +
                      1. ibycus-babel: Use the Ibycus 4 Greek font with Babel @@ -8252,7 +8249,7 @@ A two-element sans-serif font

                        J

                        -
                          +
                          1. jablantile: Metafont version of tiles in the style of Slavik Jablan @@ -8396,7 +8393,7 @@ A replacement for LaTeX's verbatim package

                            K

                            -
                              +
                              1. kantlipsum: Generate sentences in Kant's style @@ -8680,7 +8677,7 @@ A two-element sans-serif typeface

                                L

                                -
                                  +
                                  1. l2picfaq: LaTeX pictures "how-to" (German) @@ -9989,7 +9986,7 @@ Set of slide fonts based on CM

                                    M

                                    -
                                      +
                                      1. m-tx: A preprocessor for pmx @@ -11153,7 +11150,7 @@ XeLaTeX template for writing the main body of NSFC proposals

                                        N

                                        -
                                          +
                                          1. na-box: Arabic-aware version of pas-cours package @@ -11606,7 +11603,7 @@ Support for the journal "North-Western European Journal of Mathematics"

                                            O

                                            -
                                              +
                                              1. oberdiek: A bundle of packages submitted by Heiko Oberdiek @@ -11924,7 +11921,7 @@ Combine LaTeX commands over included graphics

                                                P

                                                -
                                                  +
                                                  1. pagecolor: Interrogate page colour @@ -13647,7 +13644,7 @@ Run Python from within a document, typesetting the results

                                                    Q

                                                    -
                                                      +
                                                      1. qcircuit: Macros to generate quantum ciruits @@ -13722,7 +13719,7 @@ An easy way to typeset any part of The Holy Quran

                                                        R

                                                        -
                                                          +
                                                          1. raleway: Use Raleway with TeX(-alike) systems @@ -14160,7 +14157,7 @@ Class for Ryerson Unversity Graduate School requirements

                                                            S

                                                            -
                                                              +
                                                              1. sa-tikz: TikZ library to draw switching architectures @@ -15426,7 +15423,7 @@ Format systems of equations

                                                                T

                                                                -
                                                                  +
                                                                  1. t-angles: Draw tangles, trees, Hopf algebra operations and other pictures @@ -17095,7 +17092,7 @@ Print a typographic grid

                                                                    U

                                                                    -
                                                                      +
                                                                      1. uaclasses: University of Arizona thesis and dissertation format @@ -17430,7 +17427,7 @@ University of Washington thesis class

                                                                        V

                                                                        -
                                                                          +
                                                                          1. vancouver: Bibliographic style file for Biomedical Journals @@ -17634,7 +17631,7 @@ Variable-width multiple text columns

                                                                            W

                                                                            -
                                                                              +
                                                                              1. wadalab: Wadalab (Japanese) font packages @@ -17788,7 +17785,7 @@ Extend LaTeX's cross-reference system

                                                                                X

                                                                                -
                                                                                  +
                                                                                  1. xargs: Define commands with many optional arguments @@ -18213,7 +18210,7 @@ Tree macros using XY-Pic

                                                                                    Y

                                                                                    -
                                                                                      +
                                                                                      1. yafoot: A bundle of miscellaneous footnote packages @@ -18282,7 +18279,7 @@ Many-featured Young tableaux and Young diagrams

                                                                                        Z

                                                                                        -
                                                                                          +
                                                                                          1. zed-csp: Typesetting Z and CSP format specifications diff --git a/Master/tlpkg/installer/config.guess b/Master/tlpkg/installer/config.guess index 2773ac4f5ed..109c726398b 100755 --- a/Master/tlpkg/installer/config.guess +++ b/Master/tlpkg/installer/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2017 Free Software Foundation, Inc. -timestamp='2017-11-01' +timestamp='2017-11-04' # 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 @@ -39,7 +39,7 @@ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. -Operation modes: +Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit @@ -127,10 +127,10 @@ if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown +UNAME_MACHINE=`uname -m 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`uname -r 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`uname -s 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`uname -v 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_SYSTEM}" in Linux|GNU|GNU/*) @@ -168,10 +168,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + UNAME_MACHINE_ARCH=`uname -p 2>/dev/null || \ /sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || \ - echo unknown)` + echo unknown` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; @@ -347,7 +347,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then + if test "`/bin/universe 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd @@ -1094,7 +1094,7 @@ EOF UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then - UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + UNAME_REL=`/bin/uname -X|grep Release|sed -e 's/.*= //'` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 @@ -1188,7 +1188,7 @@ EOF exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv @@ -1374,7 +1374,7 @@ EOF echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) - UNAME_MACHINE=`(uname -p) 2>/dev/null` + UNAME_MACHINE=`uname -p 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; @@ -1429,20 +1429,20 @@ provide the necessary information to handle your system. config.guess timestamp = $timestamp -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` +uname -m = `uname -m 2>/dev/null || echo unknown` +uname -r = `uname -r 2>/dev/null || echo unknown` +uname -s = `uname -s 2>/dev/null || echo unknown` +uname -v = `uname -v 2>/dev/null || echo unknown` -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null` +/usr/bin/uname -p = `/usr/bin/uname -p 2>/dev/null` +/bin/uname -X = `/bin/uname -X 2>/dev/null` -hostinfo = `(hostinfo) 2>/dev/null` -/bin/universe = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` +hostinfo = `hostinfo 2>/dev/null` +/bin/universe = `/bin/universe 2>/dev/null` +/usr/bin/arch -k = `/usr/bin/arch -k 2>/dev/null` +/bin/arch = `/bin/arch 2>/dev/null` +/usr/bin/oslevel = `/usr/bin/oslevel 2>/dev/null` +/usr/convex/getsysinfo = `/usr/convex/getsysinfo 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} -- cgit v1.2.3