diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-01-03 16:35:14 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-01-03 16:35:14 (GMT) |
commit | 70454ca2c330d9e96225e4b112e4da802b59fdfc (patch) | |
tree | 3b440c07770b68a05fe6a1607b21ce9eacdbf4cf /ds9/make.include | |
parent | 339f12645fb818a8850d188d595ffa394184c3b4 (diff) | |
download | blt-70454ca2c330d9e96225e4b112e4da802b59fdfc.zip blt-70454ca2c330d9e96225e4b112e4da802b59fdfc.tar.gz blt-70454ca2c330d9e96225e4b112e4da802b59fdfc.tar.bz2 |
DS9: fixed a problem with MacOS Aqua and Windows unable to locate ds9 parser scripts at startup
Diffstat (limited to 'ds9/make.include')
-rw-r--r-- | ds9/make.include | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ds9/make.include b/ds9/make.include index 0d0e028..45cd78c 100644 --- a/ds9/make.include +++ b/ds9/make.include @@ -9,11 +9,13 @@ vpath %.fcl $(prefix)/ds9/parsers $(prefix)/ds9/parsers/%parser.tcl : %parser.tac tclsh $(prefix)/taccle/taccle.tcl -p $* -d $< # tclsh $(prefix)/taccle/taccle.tcl -p $* -d -w -v $< + echo "package provide DS9 1.0" | cat - $@ > tmp && mv tmp $@ # -d debug $(prefix)/ds9/parsers/%lex.tcl : %lex.fcl tclsh $(prefix)/fickle/fickle.tcl -P $* $< # tclsh $(prefix)/fickle/fickle.tcl -P $* -d $< + echo "package provide DS9 1.0" | cat - $@ > tmp && mv tmp $@ #--------------------------library |