mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
make: Automake is complaining about .PRECIOUS being redefined
Yesterday I added test-suite.log as dependency to the .PRECIOUS target. Automake is warning about this target being redefined and from what I see there is no way I can stop the warning but I can add the %MAKEFILE% as dependency. automake warning: Makefile.am:35: warning: user target '.PRECIOUS' defined here ... /usr/share/automake-1.13/am/configure.am: ... overrides Automake target '.PRECIOUS' defined here [zj: s/%MAKEFILE%/Makefile/ because %MAKEFILE% wasn't actually substituted properly.]
This commit is contained in:
committed by
Zbigniew Jędrzejewski-Szmek
parent
d4d60b3169
commit
e7c431d3bc
@@ -32,7 +32,7 @@ SUBDIRS = . po
|
||||
.SECONDARY:
|
||||
|
||||
# Keep the test-suite.log
|
||||
.PRECIOUS: $(TEST_SUITE_LOG)
|
||||
.PRECIOUS: $(TEST_SUITE_LOG) Makefile
|
||||
|
||||
LIBUDEV_CURRENT=4
|
||||
LIBUDEV_REVISION=6
|
||||
|
||||
Reference in New Issue
Block a user