fix find mode expression.
This commit is contained in:
parent
7cd5a15287
commit
9220e72c2c
3 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.5 2003/12/17 03:10:42 grant Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2003/12/23 03:50:51 grant Exp $
|
||||
#
|
||||
|
||||
DISTNAME= # see Makefile.${OPSYS}.${ARCH}
|
||||
|
@ -56,7 +56,7 @@ do-install:
|
|||
${PREFIX}/bin/MozillaFirebird-${PLATFORM}
|
||||
@${FIND} ${MOZILLA_LIB} -type f -print \
|
||||
| ${XARGS} ${CHMOD} a+r
|
||||
@${FIND} ${MOZILLA_LIB} \( -type f -o -perm +x \) -print \
|
||||
@${FIND} ${MOZILLA_LIB} \( -type f -o -perm -u+x \) -print \
|
||||
| ${XARGS} ${CHMOD} a+rx
|
||||
@${FIND} ${MOZILLA_LIB} -type d -print \
|
||||
| ${XARGS} ${CHMOD} a+rx
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.8 2003/10/19 08:47:42 grant Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2003/12/23 03:50:51 grant Exp $
|
||||
#
|
||||
|
||||
DISTNAME= # see Makefile.${OPSYS}.${ARCH}
|
||||
|
@ -38,7 +38,7 @@ do-install:
|
|||
${INSTALL_SCRIPT} ${WRKDIR}/mozilla.sh ${PREFIX}/bin/mozilla-${PLATFORM}
|
||||
@${FIND} ${MOZILLA_LIB} -type f -print \
|
||||
| ${XARGS} ${CHMOD} a+r
|
||||
@${FIND} ${MOZILLA_LIB} \( -type f -o -perm +x \) -print \
|
||||
@${FIND} ${MOZILLA_LIB} \( -type f -o -perm -u+x \) -print \
|
||||
| ${XARGS} ${CHMOD} a+rx
|
||||
@${FIND} ${MOZILLA_LIB} -type d -print \
|
||||
| ${XARGS} ${CHMOD} a+rx
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.11 2003/11/27 16:07:46 grant Exp $
|
||||
# $NetBSD: Makefile,v 1.12 2003/12/23 03:50:51 grant Exp $
|
||||
#
|
||||
|
||||
DISTNAME= # see Makefile.${OPSYS}.${ARCH}
|
||||
|
@ -33,7 +33,7 @@ do-install:
|
|||
cd ${WRKSRC} && ${PAX} -rw -pm . ${MOZILLA_LIB}
|
||||
@${FIND} ${MOZILLA_LIB} -type f -print \
|
||||
| ${XARGS} ${CHMOD} a+r
|
||||
@${FIND} ${MOZILLA_LIB} \( -type f -o -perm +x \) -print \
|
||||
@${FIND} ${MOZILLA_LIB} \( -type f -o -perm -u+x \) -print \
|
||||
| ${XARGS} ${CHMOD} a+rx
|
||||
@${FIND} ${MOZILLA_LIB} -type d -print \
|
||||
| ${XARGS} ${CHMOD} a+rx
|
||||
|
|
Loading…
Reference in a new issue