summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2002-11-14 18:29:10 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2002-11-14 18:29:10 +0000
commit0c2447fb34482d2c41c515670cb810c93668446f (patch)
treeea865b6958bc4f43b6b006e73435ff1719e806fc
parentAdd startup-notification, a minimal implementation of the startup notification (diff)
Fix a typo that prevented empty directories from being removed.
Notes
Notes: svn path=/head/; revision=70125
-rw-r--r--www/mozilla-embedded-devel/Makefile2
-rw-r--r--www/mozilla-embedded-vendor/Makefile2
-rw-r--r--www/mozilla-embedded/Makefile2
-rw-r--r--www/mozilla-headers-devel/Makefile2
-rw-r--r--www/mozilla-headers-vendor/Makefile2
-rw-r--r--www/mozilla-headers/Makefile2
6 files changed, 6 insertions, 6 deletions
diff --git a/www/mozilla-embedded-devel/Makefile b/www/mozilla-embedded-devel/Makefile
index 7f3a61f771c2..b4fc1f2aa1d4 100644
--- a/www/mozilla-embedded-devel/Makefile
+++ b/www/mozilla-embedded-devel/Makefile
@@ -45,7 +45,7 @@ pre-install:
${TOUCH} -f ${PLIST}
cd ${WRKSRC}/dist/Embed && ${FIND} -s * -type f -o -type l | \
${SED} -e 's:^:lib/mozilla-embedded-devel/:' >> ${PLIST} \
- && ${FIND} -d * -type f | \
+ && ${FIND} -d * -type d | \
${SED} -e 's:^:@dirrm lib/mozilla-embedded-devel/:' >> ${PLIST}
${ECHO_CMD} @dirrm lib/mozilla-embedded-devel >> ${PLIST}
diff --git a/www/mozilla-embedded-vendor/Makefile b/www/mozilla-embedded-vendor/Makefile
index 45e0ec238b6b..3d27cc7b5012 100644
--- a/www/mozilla-embedded-vendor/Makefile
+++ b/www/mozilla-embedded-vendor/Makefile
@@ -45,7 +45,7 @@ pre-install:
${TOUCH} -f ${PLIST}
cd ${WRKSRC}/dist/Embed && ${FIND} -s * -type f -o -type l | \
${SED} -e 's:^:lib/mozilla-embedded-vendor/:' >> ${PLIST} \
- && ${FIND} -d * -type f | \
+ && ${FIND} -d * -type d | \
${SED} -e 's:^:@dirrm lib/mozilla-embedded-vendor/:' >> ${PLIST}
${ECHO_CMD} @dirrm lib/mozilla-embedded-vendor >> ${PLIST}
diff --git a/www/mozilla-embedded/Makefile b/www/mozilla-embedded/Makefile
index 3af96579a5e6..2d9c3fa18693 100644
--- a/www/mozilla-embedded/Makefile
+++ b/www/mozilla-embedded/Makefile
@@ -44,7 +44,7 @@ pre-install:
${TOUCH} -f ${PLIST}
cd ${WRKSRC}/dist/Embed && ${FIND} -s * -type f -o -type l | \
${SED} -e 's:^:lib/mozilla-embedded/:' >> ${PLIST} \
- && ${FIND} -d * -type f | \
+ && ${FIND} -d * -type d | \
${SED} -e 's:^:@dirrm lib/mozilla-embedded/:' >> ${PLIST}
${ECHO_CMD} @dirrm lib/mozilla-embedded >> ${PLIST}
diff --git a/www/mozilla-headers-devel/Makefile b/www/mozilla-headers-devel/Makefile
index ed6f1ac0b220..1f1bf4e0ac84 100644
--- a/www/mozilla-headers-devel/Makefile
+++ b/www/mozilla-headers-devel/Makefile
@@ -37,7 +37,7 @@ pre-install:
${TOUCH} -f ${PLIST}
cd ${WRKSRC}/dist/include && ${FIND} -s * -type f -o -type l | \
${SED} -e 's:^:include/mozilla-devel/:' >> ${PLIST} \
- && ${FIND} -d * -type f | \
+ && ${FIND} -d * -type d | \
${SED} -e 's:^:@dirrm include/mozilla-devel/:' >> ${PLIST}
${ECHO_CMD} @dirrm include/mozilla-devel >> ${PLIST}
diff --git a/www/mozilla-headers-vendor/Makefile b/www/mozilla-headers-vendor/Makefile
index d8128fcc921c..f7c6f2e05fd1 100644
--- a/www/mozilla-headers-vendor/Makefile
+++ b/www/mozilla-headers-vendor/Makefile
@@ -37,7 +37,7 @@ pre-install:
${TOUCH} -f ${PLIST}
cd ${WRKSRC}/dist/include && ${FIND} -s * -type f -o -type l | \
${SED} -e 's:^:include/mozilla-vendor/:' >> ${PLIST} \
- && ${FIND} -d * -type f | \
+ && ${FIND} -d * -type d | \
${SED} -e 's:^:@dirrm include/mozilla-vendor/:' >> ${PLIST}
${ECHO_CMD} @dirrm include/mozilla-vendor >> ${PLIST}
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}