diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-11-21 21:08:11 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-11-21 21:09:34 +0000 |
commit | 81d391f3b3dc1fa83f38e80abc2ff70724ce2bfa (patch) | |
tree | 4098ac949f302a7da809fa1c330a46087f40b2fd /community/apenwarr-redo | |
parent | b1557c21ecd27d6bff23843680c5c00668a7c055 (diff) | |
download | aports-81d391f3b3dc1fa83f38e80abc2ff70724ce2bfa.tar.bz2 aports-81d391f3b3dc1fa83f38e80abc2ff70724ce2bfa.tar.xz |
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.
Diffstat (limited to 'community/apenwarr-redo')
-rw-r--r-- | community/apenwarr-redo/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/apenwarr-redo/APKBUILD b/community/apenwarr-redo/APKBUILD index eaac0e6597..d4e7096767 100644 --- a/community/apenwarr-redo/APKBUILD +++ b/community/apenwarr-redo/APKBUILD @@ -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 } |