Overview
Artifact ID: | deede30708631cc32452ea7b49106290f6bf899a332df0a8c588b085c48e29f3 |
---|---|
Ticket: | 37bbdb9fb2abbc383fb4657118642fd495cf723d
`make install` does not work when `configure` was called without --prefix |
User & Date: | anonymous 2022-03-12 18:13:54 |
Changes
- Change icomment to:
This is actually a bug in the Tcl configure script. Starting in Tcl 8.6.11, the lines:
if test "$prefix/lib" != "$libdir"; then TCL_PACKAGE_PATH="${libdir} ${prefix}/lib" else TCL_PACKAGE_PATH="${prefix}/lib" fi
were changed to:
if test "$prefix/lib" != "$libdir"; then TCL_PACKAGE_PATH="{${libdir}} {${prefix}/lib}" else TCL_PACKAGE_PATH="{${prefix}/lib}" fi
The extra braces propagate into the tclConfig.sh file, which then breaks the makefile.
- Change login to "anonymous"
- Change mimetype to "text/x-markdown"
- Change priority to "Immediate"
- Change resolution to "Open"