Fix typo for -std=gnu++03

pull/215/merge
Jeffrey Walton 2016-07-04 22:14:51 -04:00
parent a890e8851e
commit 36a4591304
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ fi
if [[ (-z "$HAVE_GNU03") ]]; then
HAVE_GNU03=0
"$CXX" -DCRYPTOPP_ADHOC_MAIN -std=c++03 adhoc.cpp -o "$TMP/adhoc.exe" > /dev/null 2>&1
"$CXX" -DCRYPTOPP_ADHOC_MAIN -std=gnu++03 adhoc.cpp -o "$TMP/adhoc.exe" > /dev/null 2>&1
if [[ "$?" -eq "0" ]]; then
HAVE_GNU03=1
fi