Overview
Comment: | Documentation directory for .deb defined after bin/mttrc. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
107e6f80f7f4afb2af208c4c0c0d94f4 |
User & Date: | geraint@users.sourceforge.net on 2002-09-20 23:42:48 |
Other Links: | branch diff | manifest | tags |
Context
2002-09-21
| ||
00:30:48 | Script to automate the production of a .deb package from the cvs sources. check-in: d73d56666e user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-09-20
| ||
23:42:48 | Documentation directory for .deb defined after bin/mttrc. check-in: 107e6f80f7 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
22:54:36 | Overwrite mttrc MTT_DOC location for standard debian distribution. check-in: 28514959c9 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/Makefile from [42f1668a94] to [7b2dd0ae73].
︙ | ︙ | |||
95 96 97 98 99 100 101 | mtt.sh: @echo '#! /bin/sh' > mtt.sh @echo '# This file is auto-generated - do not edit' >>mtt.sh @echo '' >>mtt.sh @echo 'mtt_config_file=$(CONFDIR)/mtt.conf' >>mtt.sh @echo 'mtt_program_dir=$(PROGDIR)' >>mtt.sh @echo 'mtt_install_dir=$(INSTDIR)' >>mtt.sh | < > > | 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | mtt.sh: @echo '#! /bin/sh' > mtt.sh @echo '# This file is auto-generated - do not edit' >>mtt.sh @echo '' >>mtt.sh @echo 'mtt_config_file=$(CONFDIR)/mtt.conf' >>mtt.sh @echo 'mtt_program_dir=$(PROGDIR)' >>mtt.sh @echo 'mtt_install_dir=$(INSTDIR)' >>mtt.sh @echo '' >>mtt.sh @echo '# get site-specific settings' >>mtt.sh @echo 'if [[ -r $${mtt_config_file} ]]; then' >>mtt.sh @echo ' . $${mtt_config_file} $${mtt_install_dir}' >>mtt.sh @echo '' >>mtt.sh @echo 'elif [[ -r $${mtt_install_dir}/bin/mttrc ]]; then' >>mtt.sh @echo ' . $${mtt_install_dir}/bin/mttrc $${mtt_install_dir}' >>mtt.sh @echo 'fi' >>mtt.sh @echo '' >>mtt.sh @echo 'MTT_DOC=$(DOCDIR)' >>mtt.sh @echo '' >>mtt.sh @echo '# get user-specific settings' >>mtt.sh @echo 'if [[ -r $${HOME}/.mttrc ]]; then' >>mtt.sh @echo ' . $${HOME}/.mttrc' >>mtt.sh @echo 'fi' >>mtt.sh @echo '' >>mtt.sh @echo '# get directory-specific settings' >>mtt.sh |
︙ | ︙ |