pier 01/01/23 00:05:34
Modified: . bootstrap.sh
Log:
The C shell doesn't work with the script. Updated to BASH (linux folks
on other OSes sh!=bash).
Changed a forward slash with a back slash wich prevents bootstrapping on
unix machines.
Revision Changes Path
1.35 +2 -2 jakarta-ant/bootstrap.sh
Index: bootstrap.sh
===================================================================
RCS file: /home/cvs/jakarta-ant/bootstrap.sh,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- bootstrap.sh 2001/01/23 05:10:32 1.34
+++ bootstrap.sh 2001/01/23 08:05:34 1.35
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Cygwin support. $cygwin _must_ be set to either true or false.
case "`uname`" in
@@ -50,7 +50,7 @@
rm -rf build
TOOLS=src/main/org/apache/tools
-CLASSDIR=build\classes
+CLASSDIR=build/classes
mkdir -p build
mkdir -p ${CLASSDIR}