Commit d0393f7a authored by Dominik Charousset's avatar Dominik Charousset

Merge pull request #120 from mavam/master

Record CC and CXX in config.status.
parents 6c498131 680689d3
......@@ -130,6 +130,14 @@ configure ()
fi
echo "# This is the command used to configure this build" > config.status
if [ -n "$CC" ]; then
printf "CC=%s" $CC >> config.status
printf ' ' >> config.status
fi
if [ -n "$CXX" ]; then
printf "CXX=%s" $CXX >> config.status
printf ' ' >> config.status
fi
echo $command >> config.status
chmod u+x config.status
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment