Hi folks, It seems that the *_DATA objects are verified twice during make install. In the Makefile you find
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
*_DATA objects are verified on 2 paths:
1) install-am -> all-am -> $(DATA) -> *_DATA
2) install-am -> install-data-am -> *_DATA
Any specific reason?
I had a phony target in the dependencies of an
object in *_DATA, so I stumbled over this.
Regards
Harri
