Fixes assigning to wrong c++ compiler variable name

This commit is contained in:
Garrett Brown 2013-04-02 05:16:05 -07:00
parent 61827e6ae6
commit ee240c2097

View File

@ -17,7 +17,7 @@ if [ -z "$CC" ]; then
fi
if [ -z "$CXX" ]; then
CC=g++
CXX=g++
fi
build_libretro_bsnes()