diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-21 10:42:28 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-05-21 10:42:28 (GMT) |
commit | 7ebff6f71ceab32e2a821bd48f09fd6a2b446eff (patch) | |
tree | 9fc9f26c9f21286d45066f09e0ededf00eb1842a | |
parent | b00d1de731f133e5ff29b5abcead406d8388230a (diff) | |
download | tk-7ebff6f71ceab32e2a821bd48f09fd6a2b446eff.zip tk-7ebff6f71ceab32e2a821bd48f09fd6a2b446eff.tar.gz tk-7ebff6f71ceab32e2a821bd48f09fd6a2b446eff.tar.bz2 |
Fix [8b679f597b]: tk unix/Makefile.in : uses a library path rather than a directory location when building tk library
-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 1ec4925..691fc2f 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -284,7 +284,7 @@ CC_SEARCH_FLAGS = @CC_SEARCH_FLAGS@ LD_SEARCH_FLAGS = @LD_SEARCH_FLAGS@ # support for embedded libraries on Darwin / Mac OS X -DYLIB_INSTALL_DIR = ${LIB_RUNTIME_DIR} +DYLIB_INSTALL_DIR = $(libdir) # support for Xft: XFT_CFLAGS = @XFT_CFLAGS@ |