summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorwiz <wiz>2004-11-08 12:41:08 +0000
committerwiz <wiz>2004-11-08 12:41:08 +0000
commitbdeb625f56e77aeb534acd7d1bfcb30dd4b900da (patch)
tree9d9bf009056bb68c4fc4f72ac814588f415a69b5 /emulators
parent15576184b2eb879345a00e072373fc2b553cd2dd (diff)
downloadpkgsrc-bdeb625f56e77aeb534acd7d1bfcb30dd4b900da.tar.gz
Ignore return value from grep; somehow this broke suse91_compat installation
on 2.0_BETA/i386 for me.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/suse91_linux/Makefile.common6
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/suse91_linux/Makefile.common b/emulators/suse91_linux/Makefile.common
index 4850160bb87..e6df71885b0 100644
--- a/emulators/suse91_linux/Makefile.common
+++ b/emulators/suse91_linux/Makefile.common
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.4 2004/10/07 02:01:37 jlam Exp $
+# $NetBSD: Makefile.common,v 1.5 2004/11/08 12:41:08 wiz Exp $
SUSE_VERSION= 9.1
@@ -63,10 +63,10 @@ do-install:
${ECHO_MSG} "===> [Automatic Linux shared object handling]"; \
${EMULDIR}/sbin/ldconfig -r ${EMULDIR}; \
${MV} -f ${PLIST_SRC} ${PLIST_SRC}.old; \
- ${GREP} -v '^@dirrm' ${PLIST_SRC}.old >${PLIST_SRC}; \
+ ${GREP} -v '^@dirrm' ${PLIST_SRC}.old >${PLIST_SRC} || ${TRUE}; \
${ECHO} "@exec %D/${EMULSUBDIR}/sbin/ldconfig -r %D/${EMULSUBDIR}" >>${PLIST_SRC}; \
${ECHO} "@unexec %D/${EMULSUBDIR}/sbin/ldconfig -r %D/${EMULSUBDIR} 2>/dev/null" >>${PLIST_SRC}; \
- ${GREP} '^@dirrm' ${PLIST_SRC}.old >>${PLIST_SRC}; \
+ ${GREP} '^@dirrm' ${PLIST_SRC}.old >>${PLIST_SRC} || ${TRUE}; \
${RM} -f ${PLIST_SRC}.old; \
fi
.endif