summaryrefslogtreecommitdiff
path: root/ports-mgmt/pkg_install-devel/pkg-req
diff options
context:
space:
mode:
Diffstat (limited to 'ports-mgmt/pkg_install-devel/pkg-req')
-rw-r--r--ports-mgmt/pkg_install-devel/pkg-req21
1 files changed, 0 insertions, 21 deletions
diff --git a/ports-mgmt/pkg_install-devel/pkg-req b/ports-mgmt/pkg_install-devel/pkg-req
deleted file mode 100644
index caf4ed361cf9..000000000000
--- a/ports-mgmt/pkg_install-devel/pkg-req
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ -z "$OSVERSION" ]; then
- if [ -x /sbin/sysctl ]; then
- OSVERSION=`/sbin/sysctl -n kern.osreldate`
- else
- OSVERSION=`/usr/sbin/sysctl -n kern.osreldate`
- fi
-fi
-
-case $2 in
-INSTALL)
- if [ %%OSVERSIONCHK%% ]; then
- echo "$1: Your base pkg_install tools are already up-to-date."
- exit 1
- fi
- ;;
-esac