mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 23:10:54 +01:00
include/ircd/Makefile: Use cp -u to elide unnecessary copy for faster make install.
This commit is contained in:
parent
4d207e3edc
commit
e43b3f5fd6
1 changed files with 1 additions and 1 deletions
|
@ -110,6 +110,6 @@ install: install-mkdirs
|
||||||
@for i in $(srcdir)/*; do \
|
@for i in $(srcdir)/*; do \
|
||||||
if [[ "$$i" != "./Makefile"* ]] && [[ "$$i" != *.h.gch ]]; then \
|
if [[ "$$i" != "./Makefile"* ]] && [[ "$$i" != *.h.gch ]]; then \
|
||||||
echo "installing $$i to $(DESTDIR)$(includedir)"; \
|
echo "installing $$i to $(DESTDIR)$(includedir)"; \
|
||||||
cp -r $$i $(DESTDIR)$(includedir); \
|
cp -u -r $$i $(DESTDIR)$(includedir); \
|
||||||
fi \
|
fi \
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue