summaryrefslogtreecommitdiff
path: root/textproc/xerces-c2-devel/scripts/check-config-options
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-02-24 03:11:57 +0000
commitfa4a943c17e47bf910596a414fd7287983350b9b (patch)
treedc76cec18a505befc330e612e0a56bf1caa5ca49 /textproc/xerces-c2-devel/scripts/check-config-options
parent- Fix manpage pointing to correct PREFIX for binary and conf (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_7_0_0'.release/7.0.0
Diffstat (limited to 'textproc/xerces-c2-devel/scripts/check-config-options')
-rw-r--r--textproc/xerces-c2-devel/scripts/check-config-options24
1 files changed, 0 insertions, 24 deletions
diff --git a/textproc/xerces-c2-devel/scripts/check-config-options b/textproc/xerces-c2-devel/scripts/check-config-options
deleted file mode 100644
index 4c2701570194..000000000000
--- a/textproc/xerces-c2-devel/scripts/check-config-options
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-# $FreeBSD$
-
-rc=0
-
-if test -n "${WITH_NATIVE}"; then
- rc=$(expr $rc + 1)
-fi
-if test -n "${WITH_ICU}"; then
- rc=$(expr $rc + 1)
-fi
-if test -n "${WITH_ICONVFBSD}"; 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 transcoders." >&2
- exit 254
-fi
-
-exit 0
-
-# end