diff options
Diffstat (limited to 'textproc/xalan-c/scripts/check-config-options')
-rw-r--r-- | textproc/xalan-c/scripts/check-config-options | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/textproc/xalan-c/scripts/check-config-options b/textproc/xalan-c/scripts/check-config-options deleted file mode 100644 index ec526e08d334..000000000000 --- a/textproc/xalan-c/scripts/check-config-options +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -rc=0 - -if test -n "${WITH_NLS}"; then - rc=$(expr $rc + 1) -fi -if test -n "${WITH_ICU}"; then - rc=$(expr $rc + 1) -fi -if test -n "${WITH_INMEM}"; then - rc=$(expr $rc + 1) -fi - -if test ${rc} -gt 1; then - echo "ERROR: please re-run make config and" >&2 - echo "only select one of the three locale systems." >&2 - exit 254 -fi - -exit 0 - -# end |