aboutsummaryrefslogtreecommitdiff
path: root/net/generic-nqs/scripts/fix-PLIST.mktmp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'net/generic-nqs/scripts/fix-PLIST.mktmp.sh')
-rw-r--r--net/generic-nqs/scripts/fix-PLIST.mktmp.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/net/generic-nqs/scripts/fix-PLIST.mktmp.sh b/net/generic-nqs/scripts/fix-PLIST.mktmp.sh
deleted file mode 100644
index 2a70066fc110..000000000000
--- a/net/generic-nqs/scripts/fix-PLIST.mktmp.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-#
-# Where did they actually store the spool area?
-# Check the NQS config file!
-#
-# Fortunately the ports system creates a temporary packing list that we can
-# modify post-install before the install gets officially recorded.
-#
-
-PATH="/usr/bin:/bin"; export PATH
-
-me=`basename $0`
-
-if [ $# -lt 2 ]; then
- echo usage: $me configfile workdir >&2
- exit 1
-fi
-
-root=`grep NQS_ROOTPRIV $1 | cut -f2 -d\"`
-mv $2/.PLIST.mktmp $2/.PLIST.mktmp.orig
-sed -e"s#XXXX#$root#" $2/.PLIST.mktmp.orig > $2/.PLIST.mktmp