diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-12-01 21:25:32 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-12-01 21:25:32 (GMT) |
| commit | db669f381b8ffe5ff42b0e4167f43e7db0f9e430 (patch) | |
| tree | 8112676f27f3a20af67eee56b9d0d18c91c22978 | |
| parent | bd7870ec5f811fc8fb2dab47bce6a007610fae8e (diff) | |
| download | tcl-db669f381b8ffe5ff42b0e4167f43e7db0f9e430.zip tcl-db669f381b8ffe5ff42b0e4167f43e7db0f9e430.tar.gz tcl-db669f381b8ffe5ff42b0e4167f43e7db0f9e430.tar.bz2 | |
Fix make install on Ubuntu (and - most likely - other platforms)
| -rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 5331c02..8123968 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -1026,7 +1026,10 @@ install-libraries: libraries $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"; \ done @echo "Installing package cookiejar 0.2 files to $(SCRIPT_INSTALL_DIR)/cookiejar0.2/" - @for i in $(TOP_DIR)/library/cookiejar/*.{tcl,txt.gz}; do \ + @for i in $(TOP_DIR)/library/cookiejar/*.tcl; do \ + $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/cookiejar0.2; \ + done + @for i in $(TOP_DIR)/library/cookiejar/*.gz; do \ $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/cookiejar0.2; \ done @echo "Installing package http 2.9.1 as a Tcl Module" |
