summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshannonjr <shannonjr@pkgsrc.org>2004-11-15 11:38:42 +0000
committershannonjr <shannonjr@pkgsrc.org>2004-11-15 11:38:42 +0000
commit0cbac7c9e1bd1bf7218dced625a500ee4d7430dd (patch)
treeb3a8a3e99be8cf58b513f583a98bc576ef1ba090
parentfb45ff04c817b6a39f763823eb9af01c22401ada (diff)
downloadpkgsrc-0cbac7c9e1bd1bf7218dced625a500ee4d7430dd.tar.gz
Add missing '-print' to FIND
-rw-r--r--lang/gcc34-ada/Makefile4
-rw-r--r--lang/gcc34/Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/lang/gcc34-ada/Makefile b/lang/gcc34-ada/Makefile
index 7e2778ac16c..c9deb9a34e6 100644
--- a/lang/gcc34-ada/Makefile
+++ b/lang/gcc34-ada/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2004/11/08 16:46:27 shannonjr Exp $
+# $NetBSD: Makefile,v 1.12 2004/11/15 11:39:14 shannonjr Exp $
#
DISTNAME= gcc-${GCC_VERSION}
@@ -126,7 +126,7 @@ pre-configure:
(cd ${WRKDIR}/.buildlink && ${MKDIR} ${RALT_GCC_RTS} && \
cd ${RALT_GCC_RTS} && ${LN} -sf ${ALT_GCC_RTS}/libgnat.a .)
(cd ${ALT_GCC:H} && \
- files=`${FIND} . -type f \( -perm -0100 \)` && \
+ files=`${FIND} . -type f \( -perm -0100 \) -print` && \
cd ${GCC_DIR}/bin/ && \
for file in ${ALT_GCC:T} $${files} ; do \
${ECHO} '#!${TOOLS_SHELL}' > $${file}; \
diff --git a/lang/gcc34/Makefile b/lang/gcc34/Makefile
index 7f1b2d8f4bc..12107e031fc 100644
--- a/lang/gcc34/Makefile
+++ b/lang/gcc34/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2004/11/12 12:31:28 shannonjr Exp $
+# $NetBSD: Makefile,v 1.20 2004/11/15 11:38:42 shannonjr Exp $
#
DISTNAME= gcc-${GCC_VERSION}
@@ -180,7 +180,7 @@ pre-configure:
(cd ${WRKDIR}/.buildlink && ${MKDIR} ${RALT_GCC_RTS} && \
cd ${RALT_GCC_RTS} && ${LN} -sf ${ALT_GCC_RTS}/libgnat.a .)
(cd ${ALT_GCC:H} && \
- bin_files=`${FIND} . -type f \( -perm -0100 \)` && \
+ bin_files=`${FIND} . -type f \( -perm -0100 \) -print` && \
cd ${WRKDIR}/.gcc/bin/ && \
for filename in ${ALT_GCC:T} $${bin_files} ; do \
${ECHO} '#!${TOOLS_SHELL}' > $${filename}; \