summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2019-04-26 22:29:04 +0000
committer Eric Hameleers <alien@slackware.com>2019-04-26 22:29:04 +0000
commit588655a164f70236a26e6da2e1cc42cc89a57811 (patch)
tree6c2d13b21e59a7ac34ce34971bc1efc291d373a6
parent22313ff7b5a9660d7daef5f17a19c4fe071725fa (diff)
downloadasb-588655a164f70236a26e6da2e1cc42cc89a57811.tar.gz
asb-588655a164f70236a26e6da2e1cc42cc89a57811.tar.xz
libreoffice: added missing source to gensrc.sh
-rwxr-xr-xlibreoffice/build/gensrc.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/libreoffice/build/gensrc.sh b/libreoffice/build/gensrc.sh
index a76a3806..2e89053c 100755
--- a/libreoffice/build/gensrc.sh
+++ b/libreoffice/build/gensrc.sh
@@ -22,7 +22,6 @@ wget --no-check-certificate -q -O - "http://cgit.freedesktop.org/libreoffice/cor
# Get the names of the tarballs we need:
eval $( wget --no-check-certificate -q -O - "http://cgit.freedesktop.org/libreoffice/core/plain/configure.ac?id=$(echo $PRGNAM-$VERSION$SUBVER)" | grep UNOWINREG_DLL= )
-eval $( wget --no-check-certificate -q -O - "http://cgit.freedesktop.org/libreoffice/core/plain/configure.ac?id=$(echo $PRGNAM-$VERSION$SUBVER)" | grep OPENSYMBOL_TTF= )
echo "all:" >> $TMP_DLLST
cat $TMP_DLLST | grep -v " *#" | grep -w export | grep -E '(_TARBALL|_JAR)' | cut -f2 -d' ' | cut -f1 -d= | sed -e 's/.*/\t&=$(&)'/ >> $TMP_DLLST
eval $(make HAVE_JAVA6=TRUE -f $TMP_DLLST)
@@ -32,7 +31,7 @@ find_url() {
cat $TMP_FETCH | sed -n "/$1/,/fetch_Download_item/s/^.*fetch_Download_item[^,]*,\([^,]*\),.*$/\1/p"
}
-for BALL in UNOWINREG_DLL OPENSYMBOL_TTF $( cat $TMP_DLLST | grep -v " *#" | grep -w export | grep -E '(_TARBALL|_JAR)' | cut -f2 -d' ' | cut -f1 -d= ); do
+for BALL in UNOWINREG_DLL $( cat $TMP_DLLST | grep -v " *#" | grep -w export | grep -E '(_TARBALL|_JAR)' | cut -f2 -d' ' | cut -f1 -d= ); do
SRCURL=$(find_url $BALL)
FILE=$(eval "echo \$$BALL")