diff options
author | jlam <jlam> | 2007-07-18 18:43:05 +0000 |
---|---|---|
committer | jlam <jlam> | 2007-07-18 18:43:05 +0000 |
commit | eb568cb10acdd3beeafdfc5be22ba6ed306c54f2 (patch) | |
tree | 35b6801e5b26dae4a8bfb902bcf31052b931b3e2 /mk | |
parent | c3b90757ad6083caea05b32359b63801b708c701 (diff) | |
download | pkgsrc-eb568cb10acdd3beeafdfc5be22ba6ed306c54f2.tar.gz |
Add missing definition for "$ACTION", which is the first argument to the
+SHLIBS script.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/pkginstall/shlibs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mk/pkginstall/shlibs b/mk/pkginstall/shlibs index 5733a4c2cb2..da42fcb31b4 100644 --- a/mk/pkginstall/shlibs +++ b/mk/pkginstall/shlibs @@ -1,4 +1,4 @@ -# $NetBSD: shlibs,v 1.1 2007/07/18 18:01:03 jlam Exp $ +# $NetBSD: shlibs,v 1.2 2007/07/18 18:43:05 jlam Exp $ # # Generate a +SHLIBS script that updates the system run-time library # search paths database for the package. @@ -21,6 +21,7 @@ ECHO="@ECHO@" PWD_CMD="@PWD_CMD@" SELF=$0 +ACTION=$1 CURDIR=`${PWD_CMD}` PKG_METADATA_DIR="${1-${CURDIR}}" |