mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 15:47:22 +00:00
build: work around automake wtf
For some reason, automake was "randomizing" the order of these few lines in the generated output Makefile.in. I have absolutely no clue what's going on, but it's the only thing preventing me from building reproducible source tarballs (i.e. bit-exactly identical), so... just slightly "rephrase" this. Should behave exactly the same as before. Signed-off-by: David Lamparter <equinox@diac24.net>
This commit is contained in:
parent
06871ed9fb
commit
62e712146b
@ -100,12 +100,18 @@ uninstall-html:
|
|||||||
.PHONY: install-data-local uninstall-local
|
.PHONY: install-data-local uninstall-local
|
||||||
if DOC
|
if DOC
|
||||||
DOC_INFO=info
|
DOC_INFO=info
|
||||||
install-data-local: install-info
|
TARGET_INSTALL_INFO=install-info
|
||||||
uninstall-local: uninstall-info
|
TARGET_UNINSTALL_INFO=uninstall-info
|
||||||
endif
|
endif
|
||||||
if DOC_HTML
|
if DOC_HTML
|
||||||
DOC_HTML=html
|
DOC_HTML=html
|
||||||
install-data-local: install-html
|
TARGET_INSTALL_HTML=install-html
|
||||||
uninstall-local: uninstall-html
|
TARGET_UNINSTALL_HTML=uninstall-html
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# leave the comments in, this was causing weird reordering issues in automake
|
||||||
|
install-data-local: $(TARGET_INSTALL_INFO) $(TARGET_INSTALL_HTML)
|
||||||
|
#
|
||||||
|
uninstall-local: $(TARGET_UNINSTALL_INFO) $(TARGET_UNINSTALL_HTML)
|
||||||
|
#
|
||||||
doc: $(DOC_INFO) $(DOC_HTML)
|
doc: $(DOC_INFO) $(DOC_HTML)
|
||||||
|
Loading…
Reference in New Issue
Block a user