community/apenwarr-redo: fix check error

The test suite complains when common variables are set, so we unset those. But
recently, `CXX` has been set as well, so we need to unset that.
This commit is contained in:
Kevin Daudt 2019-11-21 21:08:11 +00:00
parent b1557c21ec
commit 81d391f3b3

View File

@ -23,7 +23,7 @@ build() {
check() {
# Causes issues with the test suite
unset CC CPPFLAGS CFLAGS CXXFLAGS LDFLAGS
unset CC CPPFLAGS CFLAGS CXX CXXFLAGS LDFLAGS
./do test
}