pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/gcc34 Not every implementation of find(1) accepts...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4351244a6237
branches:  trunk
changeset: 482541:4351244a6237
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Fri Oct 29 14:57:03 2004 +0000

description:
Not every implementation of find(1) accepts "file" and "link" as
arguments to "-type"; use "f" and "l" instead.

diffstat:

 lang/gcc34/buildlink3.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8bfc420c70cb -r 4351244a6237 lang/gcc34/buildlink3.mk
--- a/lang/gcc34/buildlink3.mk  Fri Oct 29 14:53:39 2004 +0000
+++ b/lang/gcc34/buildlink3.mk  Fri Oct 29 14:57:03 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.5 2004/08/02 09:59:12 shannonjr Exp $
+# $NetBSD: buildlink3.mk,v 1.6 2004/10/29 14:57:03 minskim Exp $
 
 BUILDLINK_DEPTH:=       ${BUILDLINK_DEPTH}+
 GCC34_BUILDLINK3_MK:=  ${GCC34_BUILDLINK3_MK}+
@@ -32,7 +32,7 @@
 
 BUILDLINK_FILES_CMD.gcc34=     \
        (cd  ${BUILDLINK_PREFIX.gcc34} &&       \
-       ${FIND} bin libexec lib \( -type file -o -type link \) -print)
+       ${FIND} bin libexec lib \( -type f -o -type l \) -print)
 BUILDLINK_TRANSFORM.gcc34=     -e s:\buildlink:buildlink/gcc34:
 
 # Packages that link against shared libraries need a full dependency.



Home | Main Index | Thread Index | Old Index