Browse Source

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.
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268506 13f79535-47bb-0310-9956-ffa450edef68
master
Pier Fumagalli 24 years ago
parent
commit
14af9cb049
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      bootstrap.sh

+ 2
- 2
bootstrap.sh View File

@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash


# Cygwin support. $cygwin _must_ be set to either true or false. # Cygwin support. $cygwin _must_ be set to either true or false.
case "`uname`" in case "`uname`" in
@@ -50,7 +50,7 @@ echo ... Bootstrapping Ant Distribution
rm -rf build rm -rf build


TOOLS=src/main/org/apache/tools TOOLS=src/main/org/apache/tools
CLASSDIR=build\classes
CLASSDIR=build/classes


mkdir -p build mkdir -p build
mkdir -p ${CLASSDIR} mkdir -p ${CLASSDIR}


Loading…
Cancel
Save