From f9e09ae06f924f84602b003e7ccbd7c0094139f2 Mon Sep 17 00:00:00 2001 From: stainless <> Date: Tue, 4 Sep 2001 01:04:09 +0000 Subject: [PATCH] Fixed C++ compiler detection in the 'configure' script. --- zsnes/src/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zsnes/src/Makefile.in b/zsnes/src/Makefile.in index 72141879..0216b378 100644 --- a/zsnes/src/Makefile.in +++ b/zsnes/src/Makefile.in @@ -65,7 +65,7 @@ OBJS=${CHIPSOBJ} ${CPUOBJ} ${WINOBJ} ${WINDOSOBJ} ${GUIOBJ} ${VIDEOBJ} ${ZIPOBJ} @CC@ @CFLAGS@ -o $@ -c $< %.o: %.cpp - @CXX@ @CXXFLAGS@ -o $@ -c $< + @CXX@ @CXXFLAGS@ -o $@ -c $< %.o: %.asm @NASMPATH@ @NFLAGS@ -o $@ $<