mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-23 22:05:06 +02:00
Include relevant env vars on command line.
Makes it easier to reproduce a build by cut/pasting the configure line.
This commit is contained in:
parent
ef5916b8ac
commit
482f73be10
17
.github/configure.sh
vendored
17
.github/configure.sh
vendored
@ -2,5 +2,20 @@
|
|||||||
|
|
||||||
. .github/configs $1
|
. .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}
|
./configure ${CONFIGFLAGS}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user