diff options
Diffstat (limited to 'devel/cc65')
-rw-r--r-- | devel/cc65/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/cc65/Makefile b/devel/cc65/Makefile index 5feb28e7d0f9..4ff18e2cd910 100644 --- a/devel/cc65/Makefile +++ b/devel/cc65/Makefile @@ -89,7 +89,7 @@ do-install: plist: @${FIND} ${WRKSRC}/samples -not -type d | \ ${SED} -E -e 's/^.*cc65.*\/samples/%%PORTDOCS%%share\/doc\/cc65\/samples/' - @${FIND} ${WRKSRC}/samples -type d | sort -r | \ + @${FIND} ${WRKSRC}/samples -type d | ${SORT} -r | \ ${SED} -E -e 's/^.*cc65.*\/samples/%%PORTDOCS%%@dirrm share\/doc\/cc65\/samples/' .for filename in ${DOCFILES} @${ECHO_CMD} %%PORTDOCS%%share/doc/cc65/`${BASENAME} ${filename}` @@ -106,7 +106,7 @@ plist: .endfor @${FIND} ${WRKSRC}/include -not -type d | \ ${SED} -E -e 's/^.*cc65.*\/include/lib\/cc65\/include/' - @${FIND} ${WRKSRC}/include -type d | sort -r | \ + @${FIND} ${WRKSRC}/include -type d | ${SORT} -r | \ ${SED} -E -e 's/^.*cc65.*\/include/@dirrm lib\/cc65\/include/' .for filename in ${CC65LIBFILES} @${ECHO_CMD} lib/cc65/lib/`${BASENAME} ${filename}` |