aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOystein Eftevaag2009-12-26 17:46:22 +0000
committerOystein Eftevaag2009-12-26 17:46:22 +0000
commit4950d0de78b270c4e1105f586dc6d06e1eef3e01 (patch)
treed4a3d22f0d7196e046529d0b9a85203cf54ed335
parent915c60c62978dbd15b1345d69a2c1f5db3f19a2f (diff)
downloadscummvm-rg350-4950d0de78b270c4e1105f586dc6d06e1eef3e01.tar.gz
scummvm-rg350-4950d0de78b270c4e1105f586dc6d06e1eef3e01.tar.bz2
scummvm-rg350-4950d0de78b270c4e1105f586dc6d06e1eef3e01.zip
Look for Makefile.common instead of Makefile, when determining whether or not we need to generate a Makefile for building outside the source tree. This to make sure any changes will actually take effect
svn-id: r46598
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 93e432b73a..29760c1188 100755
--- a/configure
+++ b/configure
@@ -2553,7 +2553,7 @@ EOF
# Create a custom Makefile when building outside the source tree
# TODO: Add a better check than just looking for 'Makefile'
#
-if test ! -f Makefile ; then
+if test ! -f Makefile.common ; then
echo "Creating Makefile"
cat > Makefile << EOF