diff options
author | Cem Keylan <cem@ckyln.com> | 2020-12-27 20:41:52 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-12-27 20:41:52 +0300 |
commit | fddcdcd174e4c767f77e41affa37e2f989a9e44e (patch) | |
tree | 6a4a10b623a20c584760f0e840964d5b18402951 /core/gzip/build | |
parent | 38f6aa7f5401d8322daa0b978df10d5fda2a613e (diff) | |
download | repository-fddcdcd174e4c767f77e41affa37e2f989a9e44e.tar.gz |
gzip: fix build
Diffstat (limited to 'core/gzip/build')
-rwxr-xr-x | core/gzip/build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/gzip/build b/core/gzip/build index aecc904a..c9a82357 100755 --- a/core/gzip/build +++ b/core/gzip/build @@ -1,7 +1,7 @@ #!/bin/sh -e [ "$CPT_CROSS_TRIPLET" ] && - CC="$CPT_CROSS_TRIPLET-cc -L$CPT_ROOT/usr/lib -isystem -isystem $CPT_ROOT/usr/include" + CC="$CPT_CROSS_TRIPLET-cc -L$CPT_ROOT/usr/lib -isystem $CPT_ROOT/usr/include" make CC="${CC:-cc} -static" install -Dm755 pigz "$1/usr/bin/pigz" |