diff options
author | fotis <fotis@unknown> | 2000-03-06 21:34:41 +0000 |
---|---|---|
committer | fotis <fotis@unknown> | 2000-03-06 21:34:41 +0000 |
commit | 99aca1e1efffb3e2824ba70454a51f6a9fb83336 (patch) | |
tree | 7aba2f27b5cea736758d27bdf64854c9b5ff7c60 /lib/bin | |
parent | 9013a8081ee2bf6baeaac5908a9ecd066768f289 (diff) | |
download | xmlgraphics-fop-99aca1e1efffb3e2824ba70454a51f6a9fb83336.tar.gz xmlgraphics-fop-99aca1e1efffb3e2824ba70454a51f6a9fb83336.zip |
Switching from make to Ant
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193284 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib/bin')
-rwxr-xr-x | lib/bin/antRun | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/bin/antRun b/lib/bin/antRun new file mode 100755 index 000000000..4c38b1803 --- /dev/null +++ b/lib/bin/antRun @@ -0,0 +1,13 @@ +#! /bin/sh + +# Args: DIR command +cd $1 +CMD=$2 +shift +shift + +if test -f $CMD.sh; then + CMD="sh $CMD.sh" +fi + +echo $CMD $@ | sh |