diff options
author | Holger Hans Peter Freyther <holger@moiji-mobile.com> | 2013-07-18 09:18:55 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-07-19 19:13:59 -0400 |
commit | e7c431d3bcfdeeec5dcae0707145edb9a3f749aa (patch) | |
tree | ce337f92083c1b72433f2985e406aac8d2860317 | |
parent | d4d60b316914770e9e671122394f96521841eac7 (diff) |
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.]
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c4b9b1ad2f..3ece887b13 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 |