From 18fe66aa83222158b23984c63563b0e569aac488 Mon Sep 17 00:00:00 2001 From: Frank Sweetser Date: Thu, 4 Mar 2010 22:03:15 +0100 Subject: [PATCH] Fix CentOS detection in regression get-os script --- regress/scripts/get-os | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regress/scripts/get-os b/regress/scripts/get-os index aaff2cd705..b14b788022 100755 --- a/regress/scripts/get-os +++ b/regress/scripts/get-os @@ -385,7 +385,7 @@ then DISTNAME=redhat elif test -f /etc/redhat-release then - if test `grep -q CentOS /etc/redhat-release` + if grep -q CentOS /etc/redhat-release then DISTNAME=centos else -- 2.39.5