diff options
author | Martin Ritchie <ritchiem@apache.org> | 2008-11-04 14:32:03 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2008-11-04 14:32:03 +0000 |
commit | 99b6a9983bf013af72bcb41a68466b343d3e1513 (patch) | |
tree | d45290c99088b939e59aa8face587ece52df38ae | |
parent | d273ece322f7abd39c7c62307abad0d89371f409 (diff) | |
download | qpid-python-99b6a9983bf013af72bcb41a68466b343d3e1513.tar.gz |
QPID-1429
Removed the dependency check and removed full path from commands.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@711261 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-x | buildtools/buildCreator/buildCreator.py | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/buildtools/buildCreator/buildCreator.py b/buildtools/buildCreator/buildCreator.py index ede7ff67c9..0db3250179 100755 --- a/buildtools/buildCreator/buildCreator.py +++ b/buildtools/buildCreator/buildCreator.py @@ -53,20 +53,20 @@ RELEASE_DIR="release" # Command Binaries SVN='svn' -SVN_BIN='/usr/bin/svn' +SVN_BIN='svn' HTTP='http' FTP='ftp' -WGET_BIN='/usr/bin/wget' +WGET_BIN='wget' FILE='file' -CP_BIN='/bin/cp' -PATCH_BIN='/usr/bin/patch' -FILE_BIN='/usr/bin/file' -LS_BIN='/bin/ls' -TAR_BIN='/bin/tar' -BZIP2_BIN='/usr/bin/bzip2' -UNZIP_BIN='/usr/bin/unzip' -ECHO_BIN='/bin/echo' -SVNVERSION_BIN='/usr/bin/svnversion' +CP_BIN='cp' +PATCH_BIN='patch' +FILE_BIN='file' +LS_BIN='ls' +TAR_BIN='tar' +BZIP2_BIN='bzip2' +UNZIP_BIN='unzip' +ECHO_BIN='echo' +SVNVERSION_BIN='svnversion' @@ -170,8 +170,6 @@ def main(): verbose("Verbose Output Enabled") debug("Debug Enabled") - checkSystemRequirements() - if (len(args) > 2): showUsage() sys.exit(1) |