summaryrefslogtreecommitdiff
path: root/lang/ezm3/scripts/check_conflicts
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-09-09 22:19:46 +0000
committerJohn Marino <marino@FreeBSD.org>2014-09-09 22:19:46 +0000
commit27bb9553528e4e5c7565e3427708fcb5dcd6acb6 (patch)
treebc0c8ec36cc1ddcd6d88eb996c83de6d81633d06 /lang/ezm3/scripts/check_conflicts
parentUpgrade from 2.8.11 to 2.8.14. (diff)
Remove unstaged lang/ezm3 and three cvsup* ports as casualties
Notes
Notes: svn path=/head/; revision=367787
Diffstat (limited to 'lang/ezm3/scripts/check_conflicts')
-rw-r--r--lang/ezm3/scripts/check_conflicts15
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/ezm3/scripts/check_conflicts b/lang/ezm3/scripts/check_conflicts
deleted file mode 100644
index 0610f783f80e..000000000000
--- a/lang/ezm3/scripts/check_conflicts
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /bin/sh
-# Check for shared libraries left over from another Modula-3 port.
-
-libdir=${PREFIX}/lib/m3/${TARGET}
-
-case "`echo ${libdir}/lib*.so*`" in
-"${libdir}/lib*.so*")
- exit 0;;
-*)
- echo ""
- echo "You have some Modula-3 shared libraries in ${libdir}"
- echo "which conflict with ezm3. Please use pkg_delete to remove other"
- echo "versions of Modula-3, such as \"modula-3*\" and \"pm3-*\"."
- exit 1;;
-esac