diff options
Diffstat (limited to 'lang/ezm3/scripts/check_conflicts')
-rw-r--r-- | lang/ezm3/scripts/check_conflicts | 15 |
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 |