diff options
author | nijtmans <nijtmans> | 2008-10-17 20:15:39 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2008-10-17 20:15:39 (GMT) |
commit | 6dc6826a1dc7d007b786417a1bdae7579d312afa (patch) | |
tree | 013f3eb9172f92a04b968cb864e01fd2bd564de4 /unix | |
parent | e735c649b47bddf5f3e0a3722cbccf8033bddeaf (diff) | |
download | tk-6dc6826a1dc7d007b786417a1bdae7579d312afa.zip tk-6dc6826a1dc7d007b786417a1bdae7579d312afa.tar.gz tk-6dc6826a1dc7d007b786417a1bdae7579d312afa.tar.bz2 |
fix missing "-Wl," prefix in HP-UX build
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/tcl.m4 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure b/unix/configure index 237562d..852aa91 100755 --- a/unix/configure +++ b/unix/configure @@ -4921,7 +4921,7 @@ fi DL_LIBS="-ldld" LDFLAGS="$LDFLAGS -Wl,-E" CC_SEARCH_FLAGS='-Wl,+s,+b,${LIB_RUNTIME_DIR}:.' - LD_SEARCH_FLAGS='-Wl,+s -Wl,+b ${LIB_RUNTIME_DIR}:.' + LD_SEARCH_FLAGS='-Wl,+s,+b,${LIB_RUNTIME_DIR}:.' LD_LIBRARY_PATH_VAR="SHLIB_PATH" fi diff --git a/unix/tcl.m4 b/unix/tcl.m4 index c1dc401..14db6a4 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1267,7 +1267,7 @@ dnl AC_CHECK_TOOL(AR, ar) DL_LIBS="-ldld" LDFLAGS="$LDFLAGS -Wl,-E" CC_SEARCH_FLAGS='-Wl,+s,+b,${LIB_RUNTIME_DIR}:.' - LD_SEARCH_FLAGS='-Wl,+s -Wl,+b ${LIB_RUNTIME_DIR}:.' + LD_SEARCH_FLAGS='-Wl,+s,+b,${LIB_RUNTIME_DIR}:.' LD_LIBRARY_PATH_VAR="SHLIB_PATH" ]) AS_IF([test "$GCC" = yes], [ |