Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Better check for ensuring we start in the correct directory |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a85b6aaeadc61e1fadfad5b98bab056f |
User & Date: | rkeene 2017-09-26 15:08:18 |
Context
2017-10-31
| ||
14:37 | Added patches for GCC 5.2.0 to compile under newer versions of GCC check-in: 3c1891c96a user: rkeene tags: trunk | |
2017-09-26
| ||
15:08 | Better check for ensuring we start in the correct directory check-in: a85b6aaead user: rkeene tags: trunk | |
15:05 | Fixed typo check-in: 6337662095 user: rkeene tags: trunk | |
Changes
Changes to build-cc.
1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /bin/bash # build-cc @@VERS@@ if [ "$1" = "--version" ]; then echo 'build-cc @@VERS@@' exit 0 fi # Start in the same working directory as our script OURSCP="$(which "$0" 2>/dev/null)" if [ -f "${OURSCP}" ]; then | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #! /bin/bash # build-cc @@VERS@@ if [ "$1" = "--version" ]; then echo 'build-cc @@VERS@@' exit 0 fi # Start in the same working directory as our script OURSCP="$(which "$0" 2>/dev/null)" if [ -f "${OURSCP}" ]; then TOPDIR="$(cd "$(dirname "${OURSCP}")" && pwd)" || exit 1 fi export TOPDIR cd "${TOPDIR}" || exit 1 # Load configuration ## Provide defaults |
︙ | ︙ |