From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id c0eb18f1 for ; Wed, 6 Mar 2019 11:05:01 -0500 (EST) Date: Wed, 6 Mar 2019 11:05:01 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: while $() is more modern than ``, it does not work with the X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: Log Message: ----------- while $() is more modern than ``, it does not work with the default /bin/sh on Solaris 10, so use the classical form Modified Files: -------------- mandoc: configure Revision Data ------------- Index: configure =================================================================== RCS file: /home/cvs/mandoc/mandoc/configure,v retrieving revision 1.69 retrieving revision 1.70 diff -Lconfigure -Lconfigure -u -p -r1.69 -r1.70 --- configure +++ 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 -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv