diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 08:59:15 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 08:59:15 (GMT) |
commit | a4006968d92084f2d3bc97fc34fa01d0af271963 (patch) | |
tree | 78ada33512808f3b8655ea0b6cb15f28feda42b6 /unix | |
parent | 703055871b9c9615284dc69dd2dcf07a05b454f5 (diff) | |
download | tcl-a4006968d92084f2d3bc97fc34fa01d0af271963.zip tcl-a4006968d92084f2d3bc97fc34fa01d0af271963.tar.gz tcl-a4006968d92084f2d3bc97fc34fa01d0af271963.tar.bz2 |
Fix [https://core.tcl-lang.org/tk/info/8b679f597b1d17ad|8b679f597b] for Tcl too: LIB_RUNTIME_DIR could contain mulitple paths, DYLIB_INSTALL_DIR cannot handle that
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 4174069..50b5839 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -204,7 +204,7 @@ TCL_LIB_FLAG = @TCL_LIB_FLAG@ #TCL_LIB_FLAG = -ltcl # support for embedded libraries on Darwin / Mac OS X -DYLIB_INSTALL_DIR = ${LIB_RUNTIME_DIR} +DYLIB_INSTALL_DIR = $(libdir) #-------------------------------------------------------------------------- # The information below is modified by the configure script when Makefile is |