Overview
Comment: | Corrected broken test for debug. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
02f82e2d531c5c39342b4d900e6a0858 |
User & Date: | geraint@users.sourceforge.net on 2002-06-10 22:55:48 |
Other Links: | branch diff | manifest | tags |
Context
2002-06-10
| ||
23:00:24 | typo. check-in: 41aed42be2 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
22:55:48 | Corrected broken test for debug. check-in: 02f82e2d53 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
19:25:00 | Replaced dummy check for valid input with a less broken dummy function. check-in: 1855b1a205 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/rep/sfun_rep.sh from [34bb9e01a2] to [fe83bc4dd5].
1 2 3 4 5 6 7 8 9 10 11 12 | #! /bin/sh set -e # # function definitions # set_debug () { debug=$1 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #! /bin/sh set -e # # function definitions # set_debug () { debug=$1 if ( $debug ); then set -x make_debug='--debug=a' else set +x make_debug='' fi } |
︙ | ︙ | |||
1372 1373 1374 1375 1376 1377 1378 | ### main program | | | 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 | ### main program set_debug false check_for_valid_input "$*" OPTS="$1" SYS="$2" REP="$3" LANG="$4" make $make_debug -f ${MTT_REP}/sfun_rep/Makefile ${2}_${3}.${4} exit 0 |