Skip to content
Snippets Groups Projects
Commit 82859769 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

rules.mk: provide a macro "file_copy" which removes any symlink in the...

rules.mk: provide a macro "file_copy" which removes any symlink in the destination dir that would be overwritten

SVN-Revision: 34437
parent 9f3dc9af
No related branches found
No related tags found
No related merge requests found
......@@ -287,6 +287,24 @@ define locked
-c '$(subst ','\'',$(1))'
endef
# Recursively copy paths into another directory, purge dangling
# symlinks before.
# $(1) => File glob expression
# $(2) => Destination directory
define file_copy
for src_dir in $(sort $(foreach d,$(wildcard $(1)),$(dir $(d)))); do \
( cd $$src_dir; find -type f -or -type d ) | \
( cd $(2); while :; do \
read FILE; \
[ -z "$$FILE" ] && break; \
[ -L "$$FILE" ] || continue; \
echo "Removing symlink $(2)/$$FILE"; \
rm -f "$$FILE"; \
done; ); \
done; \
$(CP) $(1) $(realpath $(2)/)/
endef
# file extension
ext=$(word $(words $(subst ., ,$(1))),$(subst ., ,$(1)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment