Skip to content

Commit

Permalink
pkg: setting PREFIX did not do anything
Browse files Browse the repository at this point in the history
  • Loading branch information
fichtner committed Aug 7, 2015
1 parent e491d79 commit 8061ea1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Mk/tree.mk
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ install:
plist:
.for TREE in ${TREES}
@(cd ${TREE}; find * -type f) | while read FILE; do \
FILE="$${FILE%%.in}"; PREFIX=""; \
FILE="$${FILE%%.in}"; \
if [ $${FILE%%.sample} != $${FILE} ]; then \
PREFIX="@sample "; \
echo "@sample ${ROOT}/${TREE}/$${FILE}"; \
else \
echo "${ROOT}/${TREE}/$${FILE}"; \
fi; \
echo "${PREFIX} ${ROOT}/${TREE}/$${FILE}"; \
done
.endfor

Expand Down

0 comments on commit 8061ea1

Please sign in to comment.