Skip to content
Snippets Groups Projects
Commit 94bc7e62 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added a comparison to copy Makefile.src to Makefile.in if they differ.

Rev: src/run_autoconfig:1.2
parent ca67107c
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,12 @@ fix() ...@@ -10,6 +10,12 @@ fix()
if [ ! -f $1/Makefile.in ]; then if [ ! -f $1/Makefile.in ]; then
cp $1/Makefile.src $1/Makefile.in cp $1/Makefile.src $1/Makefile.in
else if cmp $1/Makefile.src $1/Makefile.in >/dev/null; then
:
else
# This might not be strictly necessary, but you
# need to run 'make depend' afterwards anyway.
cp $1/Makfile.src $1/Makefile.in
fi fi
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment