summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b072953)
raw | patch | inline | side by side (parent: b072953)
author | Marc Fournier <marc@bl.uem.li> | |
Thu, 22 Sep 2016 07:23:35 +0000 (09:23 +0200) | ||
committer | Marc Fournier <marc@bl.uem.li> | |
Sun, 9 Oct 2016 19:10:24 +0000 (21:10 +0200) |
debian/changelog | patch | blob | history | |
debian/patches/configure_find_lc_all.patch | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
index 9872a06c9dea640125bb43c42f7a2299e61e7bd5..e90125ca2732f02f0f93fffb2d1565f06f5fe73c 100644 (file)
--- a/debian/changelog
+++ b/debian/changelog
Shish for reporting this (Closes: #839771).
- rrdcached plugin now reconnects to daemon. Thanks to Matthias Urlichs
for reporting this (Closes: #657877).
+ * debian/patches:
+ - Update configure_find_lc_all.patch to reliably pick the same JVM for
+ each build, making the process reproducible.
* debian/rules:
- Disable building the barometer, drbd, fhcount and ipc plugins on
kfreebsd architectures, as they are Linux-only.
diff --git a/debian/patches/configure_find_lc_all.patch b/debian/patches/configure_find_lc_all.patch
index 00f31be080a92b624c9efbc2fdaea4f68067b80a..f2236732ee1d985f4dd212c59f6e491e10ad6f18 100644 (file)
then
AC_MSG_CHECKING([for jni.h])
- TMPVAR=`find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
-+ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
++ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name jni.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | sort | head -n 1`
if test "x$TMPVAR" != "x"
then
AC_MSG_RESULT([found in $TMPVAR])
AC_MSG_CHECKING([for jni_md.h])
- TMPVAR=`find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
-+ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
++ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name jni_md.h -type f -exec 'dirname' '{}' ';' 2>/dev/null | sort | head -n 1`
if test "x$TMPVAR" != "x"
then
AC_MSG_RESULT([found in $TMPVAR])
AC_MSG_CHECKING([for libjvm.so])
- TMPVAR=`find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
-+ TMPVAR=`LC_ALL=C find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | head -n 1`
++ TMPVAR=`LC_ALL=C find -L "$with_java_home" -type f \( -name libjvm.so -o -name libjvm.dylib \) -exec 'dirname' '{}' ';' 2>/dev/null | sort | head -n 1`
if test "x$TMPVAR" != "x"
then
AC_MSG_RESULT([found in $TMPVAR])
then
AC_MSG_CHECKING([for javac])
- TMPVAR=`find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
-+ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name javac -type f 2>/dev/null | head -n 1`
++ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name javac -type f 2>/dev/null | sort | head -n 1`
if test "x$TMPVAR" != "x"
then
JAVAC="$TMPVAR"
then
AC_MSG_CHECKING([for jar])
- TMPVAR=`find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
-+ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name jar -type f 2>/dev/null | head -n 1`
++ TMPVAR=`LC_ALL=C find -L "$with_java_home" -name jar -type f 2>/dev/null | sort | head -n 1`
if test "x$TMPVAR" != "x"
then
JAR="$TMPVAR"