summaryrefslogtreecommitdiffstats
path: root/development/openjdk7/openjdk7.SlackBuild
diff options
context:
space:
mode:
author Lenard Spencer2022-04-23 03:33:58 +0200
committer Willy Sudiarto Raharjo2022-04-23 20:47:23 +0200
commit087495c941147f279e596f8b36a1024dda3f976c (patch)
treeae1b9f30fe516462d4e8fb58ab765f4ff5f81dbd /development/openjdk7/openjdk7.SlackBuild
parent0188ee97282235ee13c1aa3b46b97aa233426c34 (diff)
downloadslackbuilds-087495c941147f279e596f8b36a1024dda3f976c.tar.gz
development/openjdk7: Fix script.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'development/openjdk7/openjdk7.SlackBuild')
-rw-r--r--development/openjdk7/openjdk7.SlackBuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/development/openjdk7/openjdk7.SlackBuild b/development/openjdk7/openjdk7.SlackBuild
index b4775b46d8..1882d91d17 100644
--- a/development/openjdk7/openjdk7.SlackBuild
+++ b/development/openjdk7/openjdk7.SlackBuild
@@ -128,6 +128,7 @@ JAVA_HOME=${BOOT_JAVA} PATH=${BOOT_JAVA}/bin:$PATH ../$ICEDTEA/configure \
--disable-system-kerberos \
--disable-system-pcsc \
--disable-system-sctp \
+ --disable-system-zlib \
--disable-compile-against-syscalls \
--with-cacerts-file="$CWD/cacerts" \
$(
@@ -165,7 +166,7 @@ find -L . \
mkdir -p $PKG/etc/profile.d
for file in $(ls "$CWD/profile.d/${PRGNAM}"*) ; do
- cat $file | sed -e "s#lib/java#lib${LIBDIRSUFFIX}/java#" \
+ cat $file | sed -e "s#lib/openjdk#lib${LIBDIRSUFFIX}/openjdk#" \
> $PKG/etc/profile.d/$(basename $file)
done
chmod 755 $PKG/etc/profile.d/*