diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2018-04-19 00:13:39 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2018-04-19 00:13:39 -0400 |
| commit | db54ef567f4c724299ad1830d574052170247e04 (patch) | |
| tree | 23cb53b4d9eadf99cd014c31e926fe6d1c4cc2c2 /scripts/musl.sh | |
| parent | d0bd2d53b1186300abd32822276e992d1359a92a (diff) | |
| parent | 38de9074ff1effefa08bfc71471a97cd0658c10c (diff) | |
| download | min-db54ef567f4c724299ad1830d574052170247e04.tar.gz min-db54ef567f4c724299ad1830d574052170247e04.tar.xz | |
Merged in changes from my desktop
Diffstat (limited to 'scripts/musl.sh')
| -rw-r--r-- | scripts/musl.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/musl.sh b/scripts/musl.sh index ed6d1bb..24cd9d1 100644 --- a/scripts/musl.sh +++ b/scripts/musl.sh @@ -4,10 +4,11 @@ VERSION="1.1.19" cd $build_dir gzip -dc < ${dist_dir}/musl-$VERSION.tar.gz | tar -xvf - cd musl-$VERSION -./configure --prefix=$prefix/usr/local/musl # --enable-static +MUSL_OPTS="--enable-static --enable-shared" +./configure --prefix=$prefix/usr/local/musl $MUSL_OPTS make -j$(nproc) make install -# export DESTDIR=$prefix -# ./configure --prefix=/usr --enable-static -# make install +export DESTDIR=$prefix +./configure --prefix=/usr $MUSL_OPTS +make install |
