Overview
Comment: | Merged fork |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d7fd72e26a5affa893cfbc500e3ce551 |
User & Date: | matt on 2011-10-08 20:26:10 |
Other Links: | manifest | tags |
Context
2011-10-08
| ||
21:27 | All (I hope) interdependencies captured and testing passes check-in: e0c173490e user: matt tags: trunk | |
20:26 | Merged fork check-in: d7fd72e26a user: matt tags: trunk | |
20:24 | Removed dboard.scm and references check-in: b2838227d5 user: matt tags: trunk | |
2011-10-07
| ||
10:02 | Adding dashboard script maker check-in: de10137974 user: mrwellan tags: trunk | |
Changes
Modified Makefile from [8552a72660] to [d467c002c8].
︙ | ︙ | |||
37 38 39 40 41 42 43 | $(HELPERS) : utils/mt_* cp $< $@ chmod a+x $@ # install dashboard as dboard so wrapper script can be called dashboard $(PREFIX)/bin/dboard : dashboard $(FILES) | | > > | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | $(HELPERS) : utils/mt_* cp $< $@ chmod a+x $@ # install dashboard as dboard so wrapper script can be called dashboard $(PREFIX)/bin/dboard : dashboard $(FILES) cp dboard $(PREFIX)/bin/dboard utils/mk_dashboard_wrapper $(PREFIX) > $(PREFIX)/bin/dashboard chmod a+x $(PREFIX)/bin/dashboard utils/mk_dashboard_wrapper $(PREFIX) > $(PREFIX)/bin/dashboard chmod a+x $(PREFIX)/bin/dashboard install : $(PREFIX)/bin/megatest $(PREFIX)/bin/dboard $(PREFIX)/bin/dashboard $(HELPERS) test: tests/tests.scm cd tests;csi -I .. -b -n tests.scm |
︙ | ︙ |
Added utils/mk_dashboard_wrapper version [37e41509e7].
> > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 | #!/bin/bash prefix=$1 echo "#!/bin/bash" if [ $LD_LIBRARY_PATH != "" ];then echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH" fi dboard=`realpath $prefix/bin/dboard` echo "$dboard \$*" |