diff options
author | marcus <marcus@FreeBSD.org> | 2002-11-15 02:29:10 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2002-11-15 02:29:10 +0800 |
commit | d2d9d70ce2b6cde3a16c9acc73eac95788cea314 (patch) | |
tree | 613aa135632d50c2de4541c6c734f59f5f529b43 /www/mozilla-headers | |
parent | 715b306f25cf6f1df90b08e603d1aa736469dbdd (diff) | |
download | freebsd-ports-gnome-d2d9d70ce2b6cde3a16c9acc73eac95788cea314.tar.gz freebsd-ports-gnome-d2d9d70ce2b6cde3a16c9acc73eac95788cea314.tar.zst freebsd-ports-gnome-d2d9d70ce2b6cde3a16c9acc73eac95788cea314.zip |
Fix a typo that prevented empty directories from being removed.
Diffstat (limited to 'www/mozilla-headers')
-rw-r--r-- | www/mozilla-headers/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/mozilla-headers/Makefile b/www/mozilla-headers/Makefile index fdcda82b4e79..4aef76fecf2b 100644 --- a/www/mozilla-headers/Makefile +++ b/www/mozilla-headers/Makefile @@ -36,7 +36,7 @@ pre-install: ${TOUCH} -f ${PLIST} cd ${WRKSRC}/dist/include && ${FIND} -s * -type f -o -type l | \ ${SED} -e 's:^:include/mozilla/:' >> ${PLIST} \ - && ${FIND} -d * -type f | \ + && ${FIND} -d * -type d | \ ${SED} -e 's:^:@dirrm include/mozilla/:' >> ${PLIST} ${ECHO_CMD} @dirrm include/mozilla >> ${PLIST} |