diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2006-05-07 15:44:37 -0700 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2006-05-07 15:44:37 -0700 |
commit | 92456577dbbe3874d6e40a1ef26b63dd405c160c (patch) | |
tree | 70f561e13be2c1ec471d0f0e46a2ad62ae6fac6e | |
parent | 4a891c6f4e49a04866b2cac7bf8bb679a256d3b4 (diff) |
Fix dependencies on libXCB.la to not walk down from $(top_builddir); this fixes parallel builds.
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index ecb65c2..719190a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -100,7 +100,7 @@ CLEANFILES = $(COREPROTO) $(EXTENSIONS) clean-local: rmdir extensions || true -XCB_LIBS = $(top_builddir)/src/libXCB.la +XCB_LIBS = libXCB.la # FIXME: find a way to autogenerate this from the XML files. |