aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorStephen Kennedy2008-07-12 14:54:14 +0000
committerStephen Kennedy2008-07-12 14:54:14 +0000
commitf272c81e86611f849dd294c14a28a0043848bd70 (patch)
tree56f6e3fb75719a519ec772b1276029ae70353c6d /Makefile.common
parent28cb417fb1343b599d5dbc31199c750365bc6f9a (diff)
downloadscummvm-rg350-f272c81e86611f849dd294c14a28a0043848bd70.tar.gz
scummvm-rg350-f272c81e86611f849dd294c14a28a0043848bd70.tar.bz2
scummvm-rg350-f272c81e86611f849dd294c14a28a0043848bd70.zip
Another hack for GNU ld, due to another circular dependency, this time between common and graphics
svn-id: r33013
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.common b/Makefile.common
index 59b72dcb53..9644426180 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -28,7 +28,8 @@ MODULES += \
common \
engines \
backends \
- common # HACK/FIXME: this extra 'common' was added because of a circular dependency between
+ common \
+ graphics # HACK/FIXME: this extra 'common' was added because of a circular dependency between
# backends and common (the newly added Virtual Keyboard stuff depends on things
# from common). This should be resolved in one way or another, perhaps by moving
# the VK code out of backends?