Overview
Comment: | Fixed bug in trailing spaces in tclConfig.sh |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8b4636beabca5500b0277fd427c9d0ee |
User & Date: | rkeene on 2009-04-20 09:29:22 |
Other Links: | manifest | tags |
Context
2009-04-20
| ||
09:31 | Updated patterns for teapot check-in: d0d93dc47e user: rkeene tags: trunk | |
09:29 | Fixed bug in trailing spaces in tclConfig.sh check-in: 8b4636beab user: rkeene tags: trunk | |
09:22 | Updated sanity check for build check-in: 7dc455e900 user: rkeene tags: trunk | |
Changes
Modified client/Makefile from [66938c5bee] to [7dab59f4d8].
︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + | source "$${dir}/tclConfig.sh"; \ echo TCLDIR="$${TCL_PACKAGE_PATH}"; \ TCLDIR="$${TCL_PACKAGE_PATH}"; \ break; \ fi; \ done; \ fi; \ TCLDIR=$$(echo "$${TCLDIR}" | sed 's@^ *@@;s@ *$$@@'); \ test -n "$${TCLDIR}" || (echo Unable to locate tclConfig.sh. Try specifying TCLDIR.; exit 1) || exit 1; \ if test ! -e "$(DESTDIR)$${TCLDIR}/teapotclient$(TEAPOTCLIENTVERS)"; then \ echo mkdir -p "$(DESTDIR)$${TCLDIR}/teapotclient$(TEAPOTCLIENTVERS)"; \ mkdir -p "$(DESTDIR)$${TCLDIR}/teapotclient$(TEAPOTCLIENTVERS)" || exit 1; \ fi; \ echo cp "lib/teapotclient$(TEAPOTCLIENTVERS)"/*.tcl "$(DESTDIR)$${TCLDIR}/teapotclient$(TEAPOTCLIENTVERS)/"; \ cp "lib/teapotclient$(TEAPOTCLIENTVERS)"/*.tcl "$(DESTDIR)$${TCLDIR}/teapotclient$(TEAPOTCLIENTVERS)/" || exit 1 |
︙ |