blob: 4ff47c849ded6dc4d4a14c163606c432a5e8eb0b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Configure the environment for IRAF, since conda build appears not to do
# "source activate" after installing dependencies (this would instead need to
# eval $PREFIX/iraf/unix/hlib/setup directly if "--level" needs specifying):
. setup_iraf.sh
logname=help_log
make_iraf_help iraf > $logname 2>&1
make_iraf_help noao >> $logname 2>&1
make_iraf_help color >> $logname 2>&1
make_iraf_help vol >> $logname 2>&1
cp -p $logname "$PREFIX/iraf/"
|