(install-build-headers): use `cp' instead of INSTALL_DATA for copying

header files inside the build tree.  The user might have redefined
INSTALL_DATA to specify owners and other information.


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7291 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-11-01 03:19:58 +00:00
parent c27e17406a
commit 3974919196

View File

@@ -68,8 +68,8 @@ install-build-headers:: $(include_HEADERS) $(build_HEADERZ)
else file="$$f"; fi; \ else file="$$f"; fi; \
if cmp -s $$file $(buildinclude)/$$f 2> /dev/null ; then \ if cmp -s $$file $(buildinclude)/$$f 2> /dev/null ; then \
: ; else \ : ; else \
echo " $(INSTALL_DATA) $$file $(buildinclude)/$$f"; \ echo " cp $$file $(buildinclude)/$$f"; \
$(INSTALL_DATA) $$file $(buildinclude)/$$f; \ cp $$file $(buildinclude)/$$f; \
fi ; \ fi ; \
done done