[master] 2626eb27a Use bare `uname` instead of `uname -o`

Poul-Henning Kamp phk at FreeBSD.org
Wed May 1 08:27:07 UTC 2024


commit 2626eb27ae968ccd19cc77a5d325fc0096dbe19c
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Wed May 1 06:40:34 2024 +0000

    Use bare `uname` instead of `uname -o`

diff --git a/autogen.des b/autogen.des
index 606c3b62a..3c4a1e04b 100755
--- a/autogen.des
+++ b/autogen.des
@@ -16,7 +16,7 @@ fi
 
 if [ "x$DST" != "x" ] ; then
 	:
-elif [ "x`uname -o`" = "xFreeBSD" ] ; then
+elif [ "x`uname`" = "xFreeBSD" ] ; then
 	DST="--prefix=/usr/local --mandir=/usr/local/man"
 else
 	DST="--prefix=/opt/varnish --mandir=/opt/varnish/man"


More information about the varnish-commit mailing list