Fix out of tree compilation on Win32
commitc74091e19b3dbd543dd8bd2756d67ea16d59c1d8
authorErik van Pienbroek <erik@vanpienbroek.nl>
Fri, 12 Aug 2011 14:22:19 +0000 (12 16:22 +0200)
committerAlejandro Piñeiro <apinheiro@igalia.com>
Fri, 12 Aug 2011 19:23:32 +0000 (12 21:23 +0200)
tree59eda5172ebd07bda9ad066726ba592319126705
parent6287b2d6e511ff455b9bf6cfcc569a03b493555e
Fix out of tree compilation on Win32

The Makefile.am file contains some Win32-specific instructions.
Two of these instructions contain references to $(srcdir)/atk.def
as the location of the file containing a list of symbols which
need to be exported in the shared library (DLL on Win32).

However, as this file is auto-generated during the build this
file will end up in the build dir and not in the source dir.
For people who don't use out of tree compilation this won't
cause any problems, but for people who are the compilation
will fail as this file doesn't exist in the $(srcdir).

Fixed this by changing these references from $(srcdir)/atk.def to atk.def
atk/Makefile.am