wiggle: fix build

After 093cc00cdd, the environment variable STRIP
is defined to "strip" -- the path / name of the strip(1) executable -- , which
is not what wiggle's build system expects that variable to mean.
This commit is contained in:
Peter Simons 2017-08-02 15:36:48 +02:00
parent 3906aac637
commit be0071c2d7

View file

@ -13,6 +13,7 @@ stdenv.mkDerivation {
configurePhase = ''
makeFlagsArray=( CFLAGS="-I. -O3"
STRIP="-s"
INSTALL="install"
BINDIR="$out/bin"
MANDIR="$out/share/man"