Skip to content
Snippets Groups Projects
Commit 1c8a4f30 authored by Simon Rose's avatar Simon Rose
Browse files

BSD find requires a path

parent 69f13926
No related branches found
No related tags found
1 merge request!201E3-1722: Add support for mac os
......@@ -280,8 +280,8 @@ CFGS += ${CONFIGS_${EPICSVERSION}}
export CFGS
# Find all license files to distribute with binaries
LICENSES = $(shell find -not -path '*/.*' -type f -iname LICENSE)
LICENSES += $(shell find -not -path '*/.*' -type f -iname Copyright)
LICENSES = $(shell find . -not -path '*/.*' -type f -iname LICENSE)
LICENSES += $(shell find . -not -path '*/.*' -type f -iname Copyright)
export LICENSES
# Filter architectures to build using EXCLUDE_ARCHS.
......
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