diff options
author | mdejong <mdejong@noemail.net> | 2001-11-09 07:11:26 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2001-11-09 07:11:26 (GMT) |
commit | 55bd8e2721733d0ab8a973d2df5a5969c5ad9f29 (patch) | |
tree | 8da7401f2b0237d2e18378cc7ab8ef8dbf75ba4f /unix/dltest | |
parent | 3f141453c8199c77ddd8db6ef7ce43f04776bc72 (diff) | |
download | tcl-55bd8e2721733d0ab8a973d2df5a5969c5ad9f29.zip tcl-55bd8e2721733d0ab8a973d2df5a5969c5ad9f29.tar.gz tcl-55bd8e2721733d0ab8a973d2df5a5969c5ad9f29.tar.bz2 |
* unix/Makefile.in:
* unix/dltest/Makefile.in:
Avoid adding libc to the LIBS variable since it
is not needed when linking with CC. If required
when linking with LD it should be done on a case
by case basis in tcl.m4.
FossilOrigin-Name: 2c712286d71ac3ab5c35cd8660d3e90a3f71617f
Diffstat (limited to 'unix/dltest')
-rw-r--r-- | unix/dltest/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/dltest/Makefile.in b/unix/dltest/Makefile.in index 98188aa..b12f7a4 100644 --- a/unix/dltest/Makefile.in +++ b/unix/dltest/Makefile.in @@ -1,11 +1,11 @@ # This Makefile is used to create several test cases for Tcl's load # command. It also illustrates how to take advantage of configuration # exported by Tcl to set up Makefiles for shared libraries. -# RCS: @(#) $Id: Makefile.in,v 1.6 1999/09/21 06:37:32 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.7 2001/11/09 07:11:26 mdejong Exp $ TCL_DBGX = @TCL_DBGX@ CC = @CC@ -LIBS = @TCL_BUILD_STUB_LIB_SPEC@ @TCL_LIBS@ -lc +LIBS = @TCL_BUILD_STUB_LIB_SPEC@ @TCL_LIBS@ AC_FLAGS = @EXTRA_CFLAGS@ SHLIB_CFLAGS = @SHLIB_CFLAGS@ SHLIB_LD = @SHLIB_LD@ |