Overview
Comment: | Don't include -q or -u in long file names via ${__ARGS} |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
20a06dd43ac6666be2b44ca47887605b |
User & Date: | gawthrop@users.sourceforge.net on 2003-08-06 14:44:51 |
Other Links: | branch diff | manifest | tags |
Context
2003-08-06
| ||
14:50:56 | Describe the alias mechanism for invoking mtt options check-in: 3a82845603 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:44:51 | Don't include -q or -u in long file names via ${__ARGS} check-in: 20a06dd43a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:33:42 | User now warned not to use -c which is unsupported. check-in: 917ad92651 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [40eabeccc5] to [191d973ad8].
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.378 2003/08/04 09:15:09 gawthrop ## -ss switch reinstated ## ## Revision 1.377 2003/06/11 15:48:02 gawthrop ## Copies (aliased) subsystems first. ## Include switches in .ps file names. ## | > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.379 2003/08/06 10:33:42 gawthrop ## User now warned not to use -c which is unsupported. ## ## Revision 1.378 2003/08/04 09:15:09 gawthrop ## -ss switch reinstated ## ## Revision 1.377 2003/06/11 15:48:02 gawthrop ## Copies (aliased) subsystems first. ## Include switches in .ps file names. ## |
︙ | ︙ | |||
2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 | ##echo $target ##target=${sys}_${rep}.${lang} ## Arguments ARGS=$4; _ARGS=-$4; __ARGS=`echo $_ARGS | tr ',' '-'` __ARGS="${MTT_SWITCHES}${__ARGS}" # Save up the argument list in a file; but only if argument has changed #DIFF doesn't like empty files - so put a blank if empty #if [ -z "$ARGS" ]; then # ARGS=' '; # _ARGS=''; #fi | > | 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 | ##echo $target ##target=${sys}_${rep}.${lang} ## Arguments ARGS=$4; _ARGS=-$4; __ARGS=`echo $_ARGS | tr ',' '-'` __ARGS="${MTT_SWITCHES}${__ARGS}" __ARGS=`echo ${__ARGS} | sed -e 's/-q//g' -e 's/-u//g'` # Save up the argument list in a file; but only if argument has changed #DIFF doesn't like empty files - so put a blank if empty #if [ -z "$ARGS" ]; then # ARGS=' '; # _ARGS=''; #fi |
︙ | ︙ |