summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Foskey <waratah@openoffice.org>2002-10-09 12:17:17 +0000
committerKen Foskey <waratah@openoffice.org>2002-10-09 12:17:17 +0000
commit2aacc1aaf348a7bd1e8a23e6b7690aa78f6e32d7 (patch)
tree0a3ebce711acd3ed2587f09575eef4b2cceea2d8
parentf841ccc4b354359dfa68fa3d75f8e9d4d30b55af (diff)
Dmake: Create bootstrap patches based on subbranch of head
-rw-r--r--config_office/bootstrap.120
1 files changed, 7 insertions, 13 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 "$?" != "0" exit $?
-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
+./configure
+if "$?" != "0" exit $?
+make
if "$?" != "0" exit $?
+echo ""
+echo "dmake as been successfully built"
+
cd ..
endif