version 1.73, 2013/11/15 17:05:49
|
version 1.75, 2013/11/22 02:44:27
|
|
|
set PYBIN = "" | set PYBIN = "" |
| |
if ($PERLBIN == "") then | if ($PERLBIN == "") then |
if (-e configsdp.txt) then |
if (-x /home/jsoc/bin/linux_x86_64/activeperl) then |
# at stanford, use |
|
set PERLBIN = "/home/jsoc/bin/linux_x86_64/activeperl" | set PERLBIN = "/home/jsoc/bin/linux_x86_64/activeperl" |
set PYBIN = "/home/jsoc/bin/linux_x86_64/activepython" |
|
else | else |
set PERLBIN = "perl" | set PERLBIN = "perl" |
|
endif |
|
endif |
|
|
|
if ($PYBIN == "") then |
|
if (-x /home/jsoc/bin/linux_x86_64/activepython) then |
|
set PYBIN = "/home/jsoc/bin/linux_x86_64/activepython" |
|
else |
set PYBIN = "python" | set PYBIN = "python" |
endif | endif |
endif | endif |
|
|
set LOCALIZATIONDIR = localization | set LOCALIZATIONDIR = localization |
endif | endif |
| |
|
# Make the path absoluate |
|
set LOCALIZATIONDIR = ${PWD}/${LOCALIZATIONDIR} |
|
|
# Eventually, dump all these generated files into a user-specified location. | # Eventually, dump all these generated files into a user-specified location. |
# This script will need to read the config.local file to get the | # This script will need to read the config.local file to get the |
# localization directory. Otherwise, just use JSOC/localization as the default. | # localization directory. Otherwise, just use JSOC/localization as the default. |
|
|
# DRMS / IDL-interface scripts | # DRMS / IDL-interface scripts |
find ../base/drms/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; | find ../base/drms/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo " " {} " OK" \; \) -o -exec echo " " {} " ERROR - couldn't create link" \; |
| |
|
echo iwashere |
# Project-specific scripts - these won't show up if you don't have the project source. | # Project-specific scripts - these won't show up if you don't have the project source. |
if (-x ${LOCALIZATIONDIR}/configure) then | if (-x ${LOCALIZATIONDIR}/configure) then |
|
echo iamhere |
${LOCALIZATIONDIR}/configure | ${LOCALIZATIONDIR}/configure |
endif | endif |
| |