From 2aacc1aaf348a7bd1e8a23e6b7690aa78f6e32d7 Mon Sep 17 00:00:00 2001 From: Ken Foskey Date: Wed, 9 Oct 2002 12:17:17 +0000 Subject: [PATCH] Dmake: Create bootstrap patches based on subbranch of head --- config_office/bootstrap.1 | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/config_office/bootstrap.1 b/config_office/bootstrap.1 index bbcee77b784d..6a13ca85293f 100644 --- a/config_office/bootstrap.1 +++ b/config_office/bootstrap.1 @@ -1,24 +1,18 @@ -set platform = `uname` - if ( ! -f $SRC_ROOT/dmake/dmake ) then cd $SRC_ROOT/dmake - -if ($platform == "SunOS") then - make Solaris2.1 -else if ($platform == "Linux" || $platform == "NetBSD" || $platform == "FreeBSD") then - autogen.sh;configure;make;make install -else if ($platform == "OSF1") then - make tru64 -else if ($platform == "IRIX" || $platform == "IRIX64") then - make irix -else if ($platform == "Darwin") then - make macosx -endif - if "$?" != "0" exit $? +./configure +if "$?" != "0" exit $? + +make +if "$?" != "0" exit $? + +echo "" +echo "dmake as been successfully built" + cd .. endif