]> xenbits.xensource.com Git - people/liuw/libxenctrl-split/libvirt.git/commit
build: avoid $(builddir) in Makefile
authorEric Blake <eblake@redhat.com>
Tue, 21 Aug 2012 20:33:03 +0000 (14:33 -0600)
committerEric Blake <eblake@redhat.com>
Tue, 21 Aug 2012 20:33:03 +0000 (14:33 -0600)
commit4fce1c43ca6b870521037e7fb3a534c2152f52ca
tree4b9776fae8aa1452efa57711dd1212b36e15710f
parentf97d02d7be53db63aadae3307cc1bcb1c93389a2
build: avoid $(builddir) in Makefile

Older automake 1.9.6 (hello there, RHEL 5) did not populate
$(builddir), which meant 'make check' failed with:

make[3]: *** No rule to make target `/.libs/libvirt.la', needed by `check-symfile'.  Stop.

For that matter, even newer automake doesn't directly emit rules
to build .libs/libvirt.la; we are better off basing our rules
on the public ./libvirt.la.

* src/Makefile.am (check-symfile): Delete useless variable.
src/Makefile.am