ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/JSOC/configsdp.txt
(Generate patch)

Comparing configsdp.txt (file contents):
Revision 1.44 by arta, Thu Oct 2 19:14:34 2014 UTC vs.
Revision 1.47 by arta, Mon Mar 9 17:03:05 2015 UTC

# Line 73 | Line 73 | q:RS_BINPATH
73   a:WL_HASWL                              1
74   q:WL_FILE                               /web/jsoc/htdocs/whitelist.txt
75   # Bin paths
76 < q:BIN_PY                                /home/jsoc/bin/linux_x86_64/activepython
76 > q:BIN_EXPORT                            /home/jsoc/cvs/Development/JSOC/bin
77 > q:BIN_PY                                /home/jsoc/bin/linux_x86_64/activepython27
78 > # Email registration
79 > a:REGEMAIL_TIMEOUT                      5
80  
81   __MAKE__
82   # JSOC_SDP third-party libraries used by base
# Line 438 | Line 441 | __PROJ__
441   __PROJCFG__
442   #! /bin/csh -f
443  
444 < # Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts
442 < # directory).
444 > set PERLBIN = ""
445  
446 < find ../proj/lev0/scripts -mindepth 1 \( -path \*CVS -prune -o -exec ln -s {} . \; -a -exec echo "  " {} " OK" \; \) -o -exec echo "  " {} " ERROR - couldn't create link" \;
446 > if ($PERLBIN == "") then
447 >    if (-x /home/jsoc/bin/linux_x86_64/activeperl) then
448 >        set PERLBIN = "/home/jsoc/bin/linux_x86_64/activeperl"
449 >    else
450 >        set PERLBIN = "perl"
451 >    endif
452 > endif
453  
454 + # Project-specific configuration (like adding links to scripts to the $JSOCROOT/scripts
455 + # directory).
456 + find ../proj/lev0/scripts -mindepth 1 -path \*CVS -prune -o -print | ${PERLBIN} -MFile::Basename -n -e 'my($bn) = basename($_); chomp($bn); my($path) = $_; chomp($path); if (!(-e $bn)) { `ln -s $_`; if ($? >> 8 == 0) { print "   " . $path . " OK\n"; } else { print "   " . $path . " ERROR - could not create link\n"; } }'

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines