Overview
Comment: | Updated to use more universal hash-bang lines for scripts |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
634ad56305f3ace2f12bf5142acdba86 |
User & Date: | rkeene on 2016-01-25 20:30:24 |
Other Links: | manifest | tags |
Context
2016-01-25
| ||
20:30 | Updated to deal with FreeBSD headers with respect to va_args check-in: a431979fb3 user: rkeene tags: trunk | |
20:30 | Updated to use more universal hash-bang lines for scripts check-in: 634ad56305 user: rkeene tags: trunk | |
18:49 | Fixed hash-bang line for header patching script check-in: 256cf626f6 user: rkeene tags: trunk | |
Changes
Modified build/autogen.sh from [a32990e3be] to [f56e71ada1].
1 2 3 4 5 6 7 8 |
#! /bin/bash
# Download latest copy of autoconf macros
(
mkdir aclocal >/dev/null 2>/dev/null
cd aclocal || exit 1
for file in shobj.m4 tcl.m4 versionscript.m4; do
|
| |
1 2 3 4 5 6 7 8 |
#! /usr/bin/env bash
# Download latest copy of autoconf macros
(
mkdir aclocal >/dev/null 2>/dev/null
cd aclocal || exit 1
for file in shobj.m4 tcl.m4 versionscript.m4; do
|
Modified build/pre.sh from [0d9128dc93] to [574316b038].
1 2 3 4 5 6 7 8 |
#! /bin/bash
cd "$(dirname "$(which "$0")")/.." || exit 1
# Generate configure script
./build/autogen.sh
# Download TCC
|
| |
1 2 3 4 5 6 7 8 |
#! /usr/bin/env bash
cd "$(dirname "$(which "$0")")/.." || exit 1
# Generate configure script
./build/autogen.sh
# Download TCC
|