diff options
author | B. Watson <yalhcru@gmail.com> | 2021-08-25 15:28:18 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-10-13 00:51:42 +0700 |
commit | 354b550f8d28c422cec4da29d9b13fa4226cc7d0 (patch) | |
tree | e6bfd2913beae4e8d85ede645a2ff154a9484606 /system/hexec/hexec.SlackBuild | |
parent | 6a8c309a1f0b5906279c928dcd7078bc59bd8064 (diff) |
system/hexec: Get rid of static lib.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/hexec/hexec.SlackBuild')
-rw-r--r-- | system/hexec/hexec.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/hexec/hexec.SlackBuild b/system/hexec/hexec.SlackBuild index 1242e614314a0..f25e30ef2c981 100644 --- a/system/hexec/hexec.SlackBuild +++ b/system/hexec/hexec.SlackBuild @@ -22,9 +22,6 @@ if [ -z "$ARCH" ]; then esac fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -73,10 +70,13 @@ CXXFLAGS="$SLKCFLAGS" \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ + --disable-static \ + --enable-shared \ --build=$ARCH-slackware-linux make make install-strip DESTDIR=$PKG +rm -f $PKG/usr/lib$LIBDIRSUFFIX/$PRGNAM/*.la gzip $PKG/usr/man/man?/*.? # NEWS and README are 0-byte placeholders. GNU thinks it can force |