Changeset 42201 for branches/eam_branches/ipp-20220316
- Timestamp:
- May 17, 2022, 3:17:40 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20220316/ippMonitor/configure.tcsh
r41730 r42201 18 18 set wwwbin = "" 19 19 set libdir = "" 20 set pltdir = "" 20 21 set datadir = "" 21 22 set site = "" … … 109 110 endif 110 111 breaksw; 112 case --pltdir* 113 if ("$1" == "--pltdir") then 114 shift 115 set pltdir = $1 116 else 117 set pltdir = `echo $1 | tr = ' ' | awk '{print $2}'` 118 endif 119 breaksw; 111 120 case --datadir* 112 121 if ("$1" == "--datadir") then … … 127 136 case --useMDB2 128 137 set DBI = "MDB2" 138 breaksw; 139 case --usePDO 140 set DBI = "PDO" 129 141 breaksw; 130 142 case --help: … … 150 162 echo "wwwbin: $wwwbin" 151 163 echo "libdir: $libdir" 164 echo "pltdir: $pltdir" 152 165 echo "datadir:$datadir" 153 166 echo "site: $site" … … 182 195 endif 183 196 197 # LIBDIR set the install lib directory 198 if ("$pltdir" == "") then 199 if ("$prefix" == "") goto usage 200 set pltdir = $prefix/plots 201 endif 202 184 203 # DATADIR holds the general non-binary files 185 204 if ("$datadir" == "") then … … 198 217 # convert Makefile.in to Makefile: 199 218 if (-e Makefile) mv -f Makefile Makefile~ 200 cat Makefile.in | sed "s|@HTDOCS@|$htdocs|" > tmp.1201 cat tmp.1 | sed "s|@ HOST2@|$hostname2|" > tmp.2202 cat tmp.2 | sed "s|@BINDIR@|$bindir|" > tmp.1203 cat tmp.1 | sed "s|@WWWBIN@|$wwwbin|" > Makefile219 cat Makefile.in | sed "s|@HTDOCS@|$htdocs|" > tmp.1 220 cat tmp.1 | sed "s|@PLTDIR@|$pltdir|" > tmp.2 221 cat tmp.2 | sed "s|@BINDIR@|$bindir|" > tmp.1 222 cat tmp.1 | sed "s|@WWWBIN@|$wwwbin|" > Makefile 204 223 rm -f tmp.1 tmp.2 205 224
Note:
See TracChangeset
for help on using the changeset viewer.
