Commit 21012660 authored by Franco Fichtner's avatar Franco Fichtner

pkg: fix plist generation

parent 8f7f2954
......@@ -26,9 +26,9 @@ install: force
# finally pretty-print a list of files present
@(cd ${.CURDIR}/src; find * -type f) | while read FILE; do \
if [ $${FILE%%.sample} != $${FILE} ]; then \
xargs -n1 printf "@sample /usr/local/%s\n"; \
echo "@sample /usr/local/$${FILE}"; \
else \
xargs -n1 printf "/usr/local/%s\n"; \
echo "/usr/local/$${FILE}"; \
fi; \
done
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment