Skip to content
Snippets Groups Projects
Commit 8c23e84d authored by Mark Grondona's avatar Mark Grondona
Browse files

only report that we're removing config.cache and config.status

if they're present.
parent a825f9b8
No related branches found
No related tags found
No related merge requests found
......@@ -17,6 +17,12 @@ echo "running automake --add-missing ... "
automake --add-missing
echo "running autoconf ... "
autoconf
echo "removing stale config.status and config.log"
rm -f config.status config.log
if [ -e config.status ]; then
echo "removing stale config.status."
rm -f config.status
fi
if [ -e config.log ]; then
echo "removing old config.log."
rm -f config.log
fi
echo "now run ./configure to configure slurm for your environment."
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment