[openssh-commits] [openssh] 01/02: Include relevant env vars on command line.
git+noreply at mindrot.org
git+noreply at mindrot.org
Thu Oct 7 15:56:58 AEDT 2021
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit 482f73be10f10b93f818df19fcc8a912c0c371fc
Author: Darren Tucker <dtucker at dtucker.net>
Date: Thu Oct 7 15:55:04 2021 +1100
Include relevant env vars on command line.
Makes it easier to reproduce a build by cut/pasting the configure line.
---
.github/configure.sh | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/.github/configure.sh b/.github/configure.sh
index e098730f..502bf5f0 100755
--- a/.github/configure.sh
+++ b/.github/configure.sh
@@ -2,5 +2,20 @@
. .github/configs $1
-set -x
+printf "$ "
+
+if [ "x$CC" != "x" ]; then
+ printf "CC='$CC' "
+fi
+if [ "x$CFLAGS" != "x" ]; then
+ printf "CFLAGS='$CFLAGS' "
+fi
+if [ "x$CPPFLAGS" != "x" ]; then
+ printf "CPPFLAGS='$CPPFLAGS' "
+fi
+if [ "x$LDFLAGS" != "x" ]; then
+ printf "LDFLAGS='$LDFLAGS' "
+fi
+
+echo ./configure ${CONFIGFLAGS}
./configure ${CONFIGFLAGS}
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list