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

Fixed yet another bug.

Rev: src/run_autoconfig:1.4
parent 04975d7a
Branches
Tags
No related merge requests found
...@@ -10,12 +10,14 @@ fix() ...@@ -10,12 +10,14 @@ 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
elif cmp $1/Makefile.src $1/Makefile.in >/dev/null; then elif [ -f $1/Makefile.src ]; then
: if cmp $1/Makefile.src $1/Makefile.in >/dev/null; then
else :
# This might not be strictly necessary, but you else
# need to run 'make depend' afterwards anyway. # This might not be strictly necessary, but you
cp $1/Makfile.src $1/Makefile.in # need to run 'make depend' afterwards anyway.
cp $1/Makefile.src $1/Makefile.in
fi
fi fi
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment