From: Guido van Rossum Date: Tue, 23 Jan 2001 01:54:07 +0000 (+0000) Subject: Get rid of weird @SET_CXX@ and @SET_DLLLIBRARY@ macro occurrences. X-Git-Tag: v2.1a1~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25b163d5798fce263daa4155c5291daba6e66db0;p=thirdparty%2FPython%2Fcpython.git Get rid of weird @SET_CXX@ and @SET_DLLLIBRARY@ macro occurrences. --- diff --git a/Modules/Makefile.pre.in b/Modules/Makefile.pre.in index f28172d22705..3a35a21e6927 100644 --- a/Modules/Makefile.pre.in +++ b/Modules/Makefile.pre.in @@ -17,7 +17,7 @@ VERSION= @VERSION@ srcdir= @srcdir@ VPATH= @srcdir@ -@SET_CXX@ +CXX= @CXX@ CC= @CC@ RANLIB= @RANLIB@ AR= @AR@ @@ -105,7 +105,7 @@ SYSLIBS= $(LIBM) $(LIBC) LIBRARY= ../libpython$(VERSION).a LDLIBRARY= ../@LDLIBRARY@ -@SET_DLLLIBRARY@ +DLLLIBRARY= @DLLLIBRARY@ # === Rules ===