forked from Mirror/frr
build: fix libtool stupidity wrt. parallel install
there's no dependency between libraries and other things to be installed, but libtool in its 90ies design wants to relink libraries when installing them. Add manual dependencies to work around this. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
parent
c0e29be115
commit
6a35bfba5e
|
@ -25,6 +25,14 @@ pkginclude_HEADERS =
|
||||||
nodist_pkginclude_HEADERS =
|
nodist_pkginclude_HEADERS =
|
||||||
dist_examples_DATA =
|
dist_examples_DATA =
|
||||||
|
|
||||||
|
## libtool, the self-made GNU scourge
|
||||||
|
## ... this should fix relinking
|
||||||
|
## ... and AUTOMAKE_DUMMY is needed to prevent automake from treating this
|
||||||
|
## as overriding the normal targets...
|
||||||
|
$(AUTOMAKE_DUMMY)install-moduleLTLIBRARIES: install-libLTLIBRARIES
|
||||||
|
$(AUTOMAKE_DUMMY)install-binPROGRAMS: install-libLTLIBRARIES
|
||||||
|
$(AUTOMAKE_DUMMY)install-sbinPROGRAMS: install-libLTLIBRARIES
|
||||||
|
|
||||||
include lib/subdir.am
|
include lib/subdir.am
|
||||||
include zebra/subdir.am
|
include zebra/subdir.am
|
||||||
include qpb/subdir.am
|
include qpb/subdir.am
|
||||||
|
|
Loading…
Reference in a new issue