summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2006-07-01 15:25:30 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2006-07-01 15:25:30 +0000
commit59261b635710607e933595574a198cebc7cf7e80 (patch)
tree6c6e5fe647cc5a9117c48dde408d1cbc5c893264 /bin
parent53c88d83353b5aa578a93171f8b01f3f3d50bf95 (diff)
downloadptxdist-59261b635710607e933595574a198cebc7cf7e80.tar.gz
ptxdist-59261b635710607e933595574a198cebc7cf7e80.tar.xz
* fix autobuilder
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@5912 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ptxdist4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ptxdist b/bin/ptxdist
index 499d0c450..8feeed49d 100755
--- a/bin/ptxdist
+++ b/bin/ptxdist
@@ -616,7 +616,7 @@ while [ "$#" != "0" ]; do
autobuild) echo
echo "${PROMPT}running autobuild"
echo
- AUTOBUILDS=$(find . -name "autobuild*")
+ AUTOBUILDS=$(find . -name "autobuild*" | grep -v .svn)
AUTOBUILD_TOPDIR=$(pwd)
exec 5>COMPILETEST
echo >&5
@@ -628,7 +628,7 @@ while [ "$#" != "0" ]; do
echo "user..............: ${USER}@${HOSTNAME}" >&5
PTX_STARTTIME=`date +"%s"`
- ./autobuild
+ ./$(basename $i)
PTX_RETVAL=$?
PTX_STOPTIME=`date +"%s"`