diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2012-02-10 15:29:36 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2012-02-10 15:29:36 +0000 |
commit | d7cbf2a01a390f2fe6bedef1292bb5aa55d8b6f7 (patch) | |
tree | 9a60fc3733e94d45e49199ccf506992f182d6c06 | |
parent | 066ef003d43079f21b6ddf46b457aa291eaff054 (diff) |
PR5477: (continued) fix Tcl/Tk configuration to use $x11_link instead of $x11_libs
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12148 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | Makefile | 5 | ||||
-rwxr-xr-x | configure | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -713,6 +713,11 @@ checkstack: fi @rm -f tools/checkstack +# Make clean in the test suite + +clean:: + cd testsuite; $(MAKE) clean + # Make MacOS X package package-macosx: @@ -1413,7 +1413,7 @@ elif test "$x11_include" = "not found" || test "$x11_link" = "not found"; then has_tk=false else tk_x11_include="$x11_include" - tk_x11_libs="$x11_libs -lX11" + tk_x11_libs="$x11_link" has_tk=true fi |