Comment: | Updated to call "/usr/bin/env" to locate "bash" in case it is not in "/bin" |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4e8d261d38eaae0078fd1f91087bb22c |
User & Date: | rkeene on 2012-02-01 07:56:32 |
Other Links: | manifest | tags |
2012-02-14
| ||
15:57 | Updated autoconf helper scripts check-in: a3c60c5f6b user: rkeene tags: trunk | |
2012-02-01
| ||
07:56 | Updated to call "/usr/bin/env" to locate "bash" in case it is not in "/bin" check-in: 4e8d261d38 user: rkeene tags: trunk | |
2011-11-19
| ||
22:51 | Reverted to [f2f5daaf90] check-in: 1de4d8358a user: rkeene tags: trunk | |
Modified build/fake-bin/uname from [239d77eb58] to [505164194d].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ "$1" == "--fake" ]; then echo "true" exit 0 fi |
︙ | ︙ |
Modified build/make-kit-crosscompile from [8fa5b4578c] to [612bd8947c].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ -z "${CROSS}" ]; then echo 'Error: Environment variable CROSS is empty/unset. Aborting.' >&2 exit 1 fi |
︙ | ︙ |
Modified build/pre.sh from [aada9fa406] to [556988d635].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash ./kitcreator distclean >/dev/null 2>/dev/null KITSHROOTDIR="$(ls -1d kitsh/buildsrc/kitsh-*/)" export KITSHROOTDIR ( cd "${KITSHROOTDIR}" || exit 1 |
︙ | ︙ |
Modified common/post/sdk.sh from [8d67b5681a] to [f6db47fdb8].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ -z "${TCLVERS}" ]; then echo 'This script is not meant to be run directly.' >&2 exit 1 fi |
︙ | ︙ |
Modified itcl/build.sh from [cd7865de36] to [aadeaa622b].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |
Modified kitcreator from [e5a4f5c30e] to [91d947f7af].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash TCLVERS="8.4.19" if echo "$1" | grep '^[0-9][0-9]*\.' >/dev/null || echo "$1" | egrep '^(cvs|fossil)_' >/dev/null; then TCLVERS="$1" shift fi |
︙ | ︙ |
Modified kitsh/build.sh from [030405272d] to [43b7f533ac].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |
Modified mk4tcl/build.sh from [ecd7e08462] to [d61f1ae923].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |
Modified tcl/build.sh from [b1c6fc2088] to [08c07cb4da].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |
Modified tcl/patchscripts/fixfixstrtod.sh from [cdb22906ce] to [4449fd2e8d].
|
| | | 1 2 3 4 5 6 | #! /usr/bin/env bash echo '#undef strtod' > 'compat/strtod.c.new' cat 'compat/strtod.c' >> 'compat/strtod.c.new' cat 'compat/strtod.c.new' > 'compat/strtod.c' rm -f 'compat/strtod.c.new' |
Modified tcl/patchscripts/macosx-fixheaders.sh from [a2a67ecc4a] to [fe59c37766].
|
| | | 1 2 3 4 5 | #! /usr/bin/env bash cp unix/*.h unix/install-sh macosx/ exit 0 |
Modified tcl/patchscripts/minbuild-nopkgs.sh from [d1143d6e77] to [360ef63d87].
|
| | | 1 2 3 4 5 | #! /usr/bin/env bash if [ -n "${KITCREATOR_MINBUILD}" ]; then rm -rf 'pkgs' fi |
Modified tcl/patchscripts/visibility-unhidden.sh from [05e06e331d] to [42e62525bc].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ "${KITTARGET}" != "kitdll" ]; then exit 0 fi for file in unix/configure; do sed 's@-fvisibility@-__disabled__fvisibility@' "${file}" > "${file}.new" |
︙ | ︙ |
Modified tcl/patchscripts/win32-dllmain.sh from [610ea73aa0] to [1f8fbf8b3b].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ "${KITTARGET}" != "kitdll" ]; then exit 0 fi ## DllMain is needed when building KitDLL for filetopatch in win/tclWin32Dll.c win/tclWinInit.c; do |
︙ | ︙ |
Modified tclvfs/build.sh from [b73ccac3f3] to [5371b35f64].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |
Modified thread/build.sh from [e0a67825aa] to [a7634f1812].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |
Modified tk/build.sh from [8dbe3ef0bd] to [8f91e493d3].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |
Modified tk/patchscripts/macosx-fixheaders.sh from [a2a67ecc4a] to [fe59c37766].
|
| | | 1 2 3 4 5 | #! /usr/bin/env bash cp unix/*.h unix/install-sh macosx/ exit 0 |
Modified tk/patchscripts/visibility-unhidden.sh from [05e06e331d] to [42e62525bc].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ "${KITTARGET}" != "kitdll" ]; then exit 0 fi for file in unix/configure; do sed 's@-fvisibility@-__disabled__fvisibility@' "${file}" > "${file}.new" |
︙ | ︙ |
Modified zlib/build.sh from [e467f5472b] to [5c73bcd9f1].
|
| | | 1 2 3 4 5 6 7 8 | #! /usr/bin/env bash if [ ! -f 'build.sh' ]; then echo 'ERROR: This script must be run from the directory it is in' >&2 exit 1 fi if [ -z "${TCLVERS}" ]; then |
︙ | ︙ |