summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorThomas Hallgren <th-github@altocumulus.org>2019-11-18 15:54:44 +0100
committerThomas Hallgren <th-github@altocumulus.org>2019-11-18 15:54:44 +0100
commit14e5528544462d9b3645da7a91120e418cc3a28b (patch)
tree0f0c49d0189441e68562dcd0d0b620bff7743bea /bin
parent28f53e801aaf0d47b22f64467c2c760dff8fd6a9 (diff)
Fix build problems, bump versiom to gf-3.10.4-git
debian/rules and bin/build-binary-dist.sh needed to be adepted to changes in how INSTALLPATH is used in src/runtime/java/Makefile.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/build-binary-dist.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/build-binary-dist.sh b/bin/build-binary-dist.sh
index 7a0e684bb..4be61379a 100755
--- a/bin/build-binary-dist.sh
+++ b/bin/build-binary-dist.sh
@@ -53,9 +53,9 @@ fi
if which >/dev/null javac && which >/dev/null jar ; then
pushd src/runtime/java
rm -f libjpgf.la # In case it contains the wrong INSTALL_PATH
- if make CFLAGS="-I$extrainclude -L$extralib" INSTALL_PATH="$prefix/lib"
+ if make CFLAGS="-I$extrainclude -L$extralib" INSTALL_PATH="$prefix"
then
- make INSTALL_PATH="$destdir$prefix/lib" install
+ make INSTALL_PATH="$destdir$prefix" install
else
echo "*** Skipping the Java binding because of errors"
fi