diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 09:10:51 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-25 09:10:51 (GMT) |
commit | 08902d8a97128693fedfc54e48c9ecb46d78e33f (patch) | |
tree | 9fd3c2ab067b2368d7acab7db23cb13ece8288c8 /unix/Makefile.in | |
parent | d6aac61b03e48bd4abe5d6b2ae71bc768b0bdb5e (diff) | |
parent | a4006968d92084f2d3bc97fc34fa01d0af271963 (diff) | |
download | tcl-08902d8a97128693fedfc54e48c9ecb46d78e33f.zip tcl-08902d8a97128693fedfc54e48c9ecb46d78e33f.tar.gz tcl-08902d8a97128693fedfc54e48c9ecb46d78e33f.tar.bz2 |
Fix [https://core.tcl-lang.org/tk/info/8b679f597b1d17ad|8b679f597b] for Tcl too: LIB_RUNTIME_DIR could contain multiple paths, DYLIB_INSTALL_DIR cannot handle that
Diffstat (limited to 'unix/Makefile.in')
-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 e392c4c..ed857b7 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -209,7 +209,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 |