source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mandoc: while $() is more modern than ``, it does not work with the
@ 2019-03-06 16:05 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2019-03-06 16:05 UTC (permalink / raw)
  To: source

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-03-06 16:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-06 16:05 mandoc: while $() is more modern than ``, it does not work with the schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).