From: Doug Torrance Date: Sun, 24 Jan 2021 13:57:47 +0000 (+0000) Subject: Reproducible version#"configure arguments" X-Git-Tag: archive/raspbian/1.19.1+ds-9+rpi1~1^2^2~9 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5bc1f842d45686d20d5119cf5764c3a8d52bae80;p=macaulay2.git Reproducible version#"configure arguments" Forwarded: not-needed Last-Update: 2020-09-18 We replace the build directory with "/build/path" in all the instances of the -fdebug-prefix-map flag. Gbp-Pq: Name reproducible-config-args.patch --- diff --git a/M2/configure.ac b/M2/configure.ac index 5642e7c..37ec8c3 100644 --- a/M2/configure.ac +++ b/M2/configure.ac @@ -6,7 +6,7 @@ AC_CONFIG_FILES(m4_include(config/files)) AC_SUBST(CONFIGURED_FILES,"$ac_config_files") AC_SUBST(CONFIG_ARGS,"$ac_configure_args") echo "'$0' $ac_configure_args" > config.args -C_CONFIG_ARGS=` echo "$ac_configure_args" | sed -e 's=\\\\=\\\\\\\\=g' -e 's=\\"=\\\\"=g' ` +C_CONFIG_ARGS=`echo "$ac_configure_args" | sed -e 's=\\\\=\\\\\\\\=g' -e 's=\\"=\\\\"=g' -e "s=$CURDIR=/build/path=g"` AC_DEFINE_UNQUOTED(CONFIG_ARGS,"$C_CONFIG_ARGS",arguments used for configure) AC_SUBST(CONFIG_CMD,"'$0' $ac_configure_args")