diff options
Diffstat (limited to 'build-aux')
| -rwxr-xr-x | build-aux/compile | 2 | ||||
| -rwxr-xr-x | build-aux/config.guess | 2 | ||||
| -rwxr-xr-x | build-aux/config.sub | 2 | ||||
| -rwxr-xr-x | build-aux/depcomp | 2 | ||||
| -rw-r--r-- | build-aux/ltmain.sh | 4 | ||||
| -rwxr-xr-x | build-aux/missing | 2 | ||||
| -rwxr-xr-x | build-aux/tap-driver.sh | 2 | ||||
| -rwxr-xr-x | build-aux/test-driver | 2 |
8 files changed, 10 insertions, 8 deletions
diff --git a/build-aux/compile b/build-aux/compile index 2ab71e4e..de0005d4 100755 --- a/build-aux/compile +++ b/build-aux/compile @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2016-01-11.22; # UTC diff --git a/build-aux/config.guess b/build-aux/config.guess index a7448442..717b2287 100755 --- a/build-aux/config.guess +++ b/build-aux/config.guess @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2017 Free Software Foundation, Inc. diff --git a/build-aux/config.sub b/build-aux/config.sub index 932128b3..f4bafc18 100755 --- a/build-aux/config.sub +++ b/build-aux/config.sub @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Configuration validation subroutine script. # Copyright 1992-2017 Free Software Foundation, Inc. diff --git a/build-aux/depcomp b/build-aux/depcomp index b39f98f9..30379e22 100755 --- a/build-aux/depcomp +++ b/build-aux/depcomp @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2016-01-11.22; # UTC diff --git a/build-aux/ltmain.sh b/build-aux/ltmain.sh index 0f0a2da3..30be9c82 100644 --- a/build-aux/ltmain.sh +++ b/build-aux/ltmain.sh @@ -7272,10 +7272,12 @@ func_mode_link () # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ - -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) + -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ + -specs=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" diff --git a/build-aux/missing b/build-aux/missing index c6e37958..b7e571ef 100755 --- a/build-aux/missing +++ b/build-aux/missing @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2016-01-11.22; # UTC diff --git a/build-aux/tap-driver.sh b/build-aux/tap-driver.sh index 82efa96c..3f6aa3a1 100755 --- a/build-aux/tap-driver.sh +++ b/build-aux/tap-driver.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Copyright (C) 2011-2017 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify diff --git a/build-aux/test-driver b/build-aux/test-driver index 0218a01f..de1e61da 100755 --- a/build-aux/test-driver +++ b/build-aux/test-driver @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # test-driver - basic testsuite driver script. scriptversion=2016-01-11.22; # UTC |