Overview
| Comment: | Corrected broken test for debug. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
9acdf436b16780fac03628ae9b34825b |
| User & Date: | geraint@users.sourceforge.net on 2002-06-10 22:55:48.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-06-10
| ||
| 23:00:24 | typo. check-in: 9421f43e15 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 22:55:48 | Corrected broken test for debug. check-in: 9acdf436b1 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: 5ab08d6d57 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
|