summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2019-03-06 16:04:31 +0000
committerIngo Schwarze <schwarze@openbsd.org>2019-03-06 16:04:31 +0000
commitd4895fe89b117092b8bb820cd710742ae433044d (patch)
tree2aa16db5f08a76d4f949d736450f6eab1aac8570 /configure
parent35edbc76efd67c5bcc0bcebd4368d9ab58221e10 (diff)
downloadmandoc-d4895fe89b117092b8bb820cd710742ae433044d.tar.gz
while $() is more modern than ``, it does not work with the
default /bin/sh on Solaris 10, so use the classical form
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 1f187ba4..4379240b 100755
--- a/configure
+++ b/configure
@@ -227,7 +227,7 @@ if [ -n "${OSENUM}" ]; then
echo "OSENUM specified manually: ${OSENUM}" 1>&2
echo "OSENUM specified manually: ${OSENUM}" 1>&3
else
- OSDETECT=$(uname)
+ OSDETECT=`uname`
if [ "X${OSDETECT}" = "XNetBSD" ]; then
OSENUM=MANDOC_OS_NETBSD
elif [ "X${OSDETECT}" = "XOpenBSD" ]; then