pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mk/pkginstall Reversed file descriptors 1 and 2... tim...
details: https://anonhg.NetBSD.org/pkgsrc/rev/1f100d6fffc2
branches: trunk
changeset: 531054:1f100d6fffc2
user: jlam <jlam%pkgsrc.org@localhost>
date: Wed Jul 18 18:55:56 2007 +0000
description:
Reversed file descriptors 1 and 2... time for a coffee break...
diffstat:
mk/pkginstall/shlibs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (24 lines):
diff -r 3d11a1d15d8f -r 1f100d6fffc2 mk/pkginstall/shlibs
--- a/mk/pkginstall/shlibs Wed Jul 18 18:53:18 2007 +0000
+++ b/mk/pkginstall/shlibs Wed Jul 18 18:55:56 2007 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: shlibs,v 1.4 2007/07/18 18:53:18 jlam Exp $
+# $NetBSD: shlibs,v 1.5 2007/07/18 18:55:56 jlam Exp $
#
# Generate a +SHLIBS script that updates the system run-time library
# search paths database for the package.
@@ -33,12 +33,12 @@
case $ACTION in
ADD)
${ECHO} "${PKGNAME}: rebuilding run-time library search paths database"
- ( @LDCONFIG_ADD_CMD@ ) >/dev/null 1>&2 || ${TRUE}
+ ( @LDCONFIG_ADD_CMD@ ) >/dev/null 2>&1 || ${TRUE}
;;
REMOVE)
${ECHO} "${PKGNAME}: rebuilding run-time library search paths database"
- ( @LDCONFIG_REMOVE_CMD@ ) >/dev/null 1>&2 || ${TRUE}
+ ( @LDCONFIG_REMOVE_CMD@ ) >/dev/null 2>&1 || ${TRUE}
;;
esac
exit $exitcode
Home |
Main Index |
Thread Index |
Old Index