Commit 28283d54 authored by Eric Andersen's avatar Eric Andersen
Browse files

fix cut-n-paste typo, where I replaced CFLAGS with two copies CXXFLAGS

fix spacing on env var failure notices
parent ef6528bb
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -38,13 +38,13 @@ fi;
echo "CPP clean:					Ok"


if test -n "$CXXFLAGS" ; then
	echo "CXXFLAGS clean:				FALSE"
	/bin/echo -e "\n\nYou must run 'unset CXXFLAGS' so buildroot can run with";
if test -n "$CFLAGS" ; then
	echo "CFLAGS clean:					FALSE"
	/bin/echo -e "\n\nYou must run 'unset CFLAGS' so buildroot can run with";
	/bin/echo -e "a clean enviroment on your build machine\n";
	exit 1;
fi;
echo "CXXFLAGS clean:					Ok"
echo "CFLAGS clean:					Ok"


if test -n "$CXXFLAGS" ; then