From 15fb8cea0370f5cba4770bc3c73259c70a537c46 Mon Sep 17 00:00:00 2001 From: chase Date: Fri, 25 May 2018 13:51:21 -0500 Subject: [PATCH] dinstallCDE.src: add linux and *BSD support --- cde/admin/IntegTools/dbTools/dinstallCDE.src | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/cde/admin/IntegTools/dbTools/dinstallCDE.src b/cde/admin/IntegTools/dbTools/dinstallCDE.src index a579a3c8..b1496c97 100755 --- a/cde/admin/IntegTools/dbTools/dinstallCDE.src +++ b/cde/admin/IntegTools/dbTools/dinstallCDE.src @@ -154,6 +154,22 @@ XCOMM then PLATFORM=sun PLATFORM_SCRIPT_DIR=sun + elif [ $BUILDSYSTEM = "Linux" ]; + then + PLATFORM=linux + PLATFORM_SCRIPT_DIR=linux + elif [ $BUILDSYSTEM = "FreeBSD" ]; + then + PLATFORM="freebsd" + PLATFORM_SCRIPT_DIR="freebsd" + elif [ $BUILDSYSTEM = "OpenBSD" ]; + then + PLATFORM="openbsd" + PLATFORM_SCRIPT_DIR="openbsd" + elif [ $BUILDSYSTEM = "NetBSD" ]; + then + PLATFORM="netbsd" + PLATFORM_SCRIPT_DIR="netbsd" else # Build system = HP PLATFORM=hp-ux PLATFORM_SCRIPT_DIR=hp -- 2.25.1