diff options
author | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2004-01-27 00:53:10 +0000 |
commit | 18a916d5e6481b140ffb5e120e09d36645a44a11 (patch) | |
tree | 0e38a95bbce9b72b902212b13f3fff0a72b2b5fd /databases | |
parent | d84262f580a6d28b6b7bde5294039c4f6e0999df (diff) | |
download | pkgsrc-18a916d5e6481b140ffb5e120e09d36645a44a11.tar.gz |
Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248
Diffstat (limited to 'databases')
-rw-r--r-- | databases/unixodbc/Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/databases/unixodbc/Makefile.common b/databases/unixodbc/Makefile.common index 910b9016c27..adb53ee7cd9 100644 --- a/databases/unixodbc/Makefile.common +++ b/databases/unixodbc/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.10 2003/07/17 21:29:09 grant Exp $ +# $NetBSD: Makefile.common,v 1.11 2004/01/27 00:53:10 heinz Exp $ DISTNAME= unixODBC-${ODBC_DIST_VERS} PKGREVISION= 1 @@ -42,7 +42,7 @@ post-patch: fix-ltdl-and-lexlib fix-driver-installation: cd ${WRKSRC}; \ - files=`${FIND} ODBCConfig DRVConfig Drivers -name Makefile.in`; \ + files=`${FIND} ODBCConfig DRVConfig Drivers -name Makefile.in -print`;\ for file in $${files}; do \ ${SED} -e "s|^\(libdir =\).*|\1 ${PREFIX}/${UNIXODBC_DRIVERS_DIR}|g" \ $${file} >> $${file}.fixed; \ @@ -51,7 +51,7 @@ fix-driver-installation: fix-ltdl-and-lexlib: cd ${WRKSRC}; \ - files=`${FIND} . -name Makefile.in`; \ + files=`${FIND} . -name Makefile.in -print`; \ for file in $${files}; do \ ${SED} -e "/DEPENDENCIES/s|\$$(LIBLTDL)||g" \ -e "/LIBADD/s|@LEXLIB@|\$$(LEXLIB)|g" \ |