Overview
| Comment: | Fixed bug in installation Updated to install pkgIndex.tcl |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
d0146d18700a9b2063133d2d7a019e94 |
| User & Date: | rkeene on 2011-09-09 14:53:50.000 |
| Other Links: | manifest | tags |
Context
|
2011-09-09
| ||
| 15:04 | Fixed up interp->result accesses check-in: 403c5120ce user: rkeene tags: trunk | |
| 14:53 | Fixed bug in installation Updated to install pkgIndex.tcl check-in: d0146d1870 user: rkeene tags: trunk | |
| 14:35 | Removed extraneous code check-in: 5c79fa6870 user: rkeene tags: trunk | |
Changes
Modified Makefile.in
from [21133ef852]
to [122cee2c73].
| ︙ | ︙ | |||
191 192 193 194 195 196 197 | if [ ! -d $$i ] ; then \ echo "Making directory $$i"; \ mkdir $$i; \ chmod 755 $$i; \ else true; \ fi; \ done; | | | > | 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
mkdir $$i; \
chmod 755 $$i; \
else true; \
fi; \
done;
@for target in @TARGETS@; do \
echo "Installing $${target}"; \
$(INSTALL_PROGRAM) $${target} $(LIB_INSTALL_DIR); \
done
@$(INSTALL_DATA) pkgIndex.tcl $(LIB_INSTALL_DIR)
install-libraries:
@for i in $(INSTALL_ROOT)$(prefix)/lib $(INCLUDE_INSTALL_DIR) \
$(SCRIPT_INSTALL_DIR) ; \
do \
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
|
| ︙ | ︙ |
Modified build/makearch.info
from [a8d91c74fc]
to [d8e08f20f7].
| ︙ | ︙ | |||
39 40 41 42 43 44 45 | UPDATED="build/autogen.sh" # This script is executed immediately prior to creation of the # tarball AFTER="" # Files matching these (space-seperated) patterns are deleted | | | 39 40 41 42 43 44 45 46 | UPDATED="build/autogen.sh" # This script is executed immediately prior to creation of the # tarball AFTER="" # Files matching these (space-seperated) patterns are deleted TMPS="*.out HEADER build aclocal INST" |