Browse Source

Add some more copyright notices.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270659 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 23 years ago
parent
commit
f51abba170
13 changed files with 41 additions and 0 deletions
  1. +3
    -0
      bootstrap.bat
  2. +3
    -0
      bootstrap.sh
  3. +3
    -0
      build.bat
  4. +3
    -0
      build.sh
  5. +4
    -0
      build.xml
  6. +3
    -0
      src/script/ant
  7. +3
    -0
      src/script/ant.bat
  8. +3
    -0
      src/script/antRun
  9. +3
    -0
      src/script/antRun.bat
  10. +3
    -0
      src/script/complete-ant-cmd.pl
  11. +3
    -0
      src/script/lcp.bat
  12. +4
    -0
      src/script/runant.pl
  13. +3
    -0
      src/script/runant.py

+ 3
- 0
bootstrap.bat View File

@@ -2,6 +2,9 @@

REM You will need to specify JAVA_HOME if compiling with 1.2 or later.

REM Copyright (c) 2000-2001 The Apache Software Foundation. All rights
REM reserved.

set OLDJAVA=%JAVA%
set OLDJAVAC=%JAVAC%
set BOOTOLDCLASSPATH=%CLASSPATH%


+ 3
- 0
bootstrap.sh View File

@@ -1,5 +1,8 @@
#!/bin/sh

# Copyright (c) 2000-2001 The Apache Software Foundation. All rights
# reserved.

# OS specific support. $var _must_ be set to either true or false.
cygwin=false;
case "`uname`" in


+ 3
- 0
build.bat View File

@@ -1,5 +1,8 @@
@echo off

REM Copyright (c) 2000-2001 The Apache Software Foundation. All rights
REM reserved.

set OLDCLASSPATH=%CLASSPATH%
set REAL_ANT_HOME=%ANT_HOME%
set ANT_HOME=bootstrap


+ 3
- 0
build.sh View File

@@ -1,5 +1,8 @@
#!/bin/sh

# Copyright (c) 2000-2002 The Apache Software Foundation. All rights
# reserved.

cygwin=false;
case "`uname`" in
CYGWIN*) cygwin=true ;;


+ 4
- 0
build.xml View File

@@ -3,6 +3,10 @@
<!--
=======================================================================
Apache Ant own build file

Copyright (c) 2000-2002 The Apache Software Foundation. All rights
reserved.

=======================================================================
-->
<project default="main" basedir=".">


+ 3
- 0
src/script/ant View File

@@ -1,5 +1,8 @@
#! /bin/sh

# Copyright (c) 2001 The Apache Software Foundation. All rights
# reserved.

if [ -f "$HOME/.antrc" ] ; then
. $HOME/.antrc
fi


+ 3
- 0
src/script/ant.bat View File

@@ -1,5 +1,8 @@
@echo off

REM Copyright (c) 2001 The Apache Software Foundation. All rights
REM reserved.

if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat"

if not "%OS%"=="Windows_NT" goto win9xStart


+ 3
- 0
src/script/antRun View File

@@ -1,5 +1,8 @@
#! /bin/sh

# Copyright (c) 2001 The Apache Software Foundation. All rights
# reserved.

# Args: DIR command
cd "$1"
CMD="$2"


+ 3
- 0
src/script/antRun.bat View File

@@ -1,5 +1,8 @@
@echo off

REM Copyright (c) 2001 The Apache Software Foundation. All rights
REM reserved.

rem Change drive and directory to %1 (Win9X only for NT/2K use "cd /d")
cd %1
%1\


+ 3
- 0
src/script/complete-ant-cmd.pl View File

@@ -1,5 +1,8 @@
#!/usr/bin/perl
#
# Copyright (c) 2001 The Apache Software Foundation. All rights
# reserved.
#
# A script to allow Bash or Z-Shell to complete an Ant command-line.
#
# To install for Bash 2.0 or better, add the following to ~/.bashrc:


+ 3
- 0
src/script/lcp.bat View File

@@ -1,3 +1,6 @@
REM Copyright (c) 2001 The Apache Software Foundation. All rights
REM reserved.

set _CLASSPATHCOMPONENT=%1
:argCheck
if %2a==a goto gotAllArgs


+ 4
- 0
src/script/runant.pl View File

@@ -1,4 +1,8 @@
#!/usr/bin/perl
#
# Copyright (c) 2001 The Apache Software Foundation. All rights
# reserved.
#
#######################################################################
#
# runant.pl


+ 3
- 0
src/script/runant.py View File

@@ -8,6 +8,9 @@
the python os library)
This script has been tested with Python2.0/Win2K

Copyright (c) 2001 The Apache Software Foundation. All rights
reserved.

created: 2001-04-11
author: Pierre Dittgen pierre.dittgen@criltelecom.com



Loading…
Cancel
Save