summaryrefslogtreecommitdiffstats
path: root/make/scripts/crosstest-java-linux-armv7-rel.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-08-05 13:34:33 +0200
committerSven Gothel <[email protected]>2011-08-05 13:34:33 +0200
commitdf5cca17c76e9a566c8aa28dde5dd0f95fa4b92e (patch)
tree8abdb905d90295b407104de5fe25f49268128973 /make/scripts/crosstest-java-linux-armv7-rel.sh
parent0afee4288c9f95450292ca2f2ec9170b93f64830 (diff)
crosstest: add rsync excludes
Diffstat (limited to 'make/scripts/crosstest-java-linux-armv7-rel.sh')
-rw-r--r--make/scripts/crosstest-java-linux-armv7-rel.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/make/scripts/crosstest-java-linux-armv7-rel.sh b/make/scripts/crosstest-java-linux-armv7-rel.sh
index 2b44379..b38a6f5 100644
--- a/make/scripts/crosstest-java-linux-armv7-rel.sh
+++ b/make/scripts/crosstest-java-linux-armv7-rel.sh
@@ -14,8 +14,12 @@ TSTCLASS=com.jogamp.common.GlueGenVersion
LOGFILE=`basename $0 .sh`.log
+RSYNC_EXCLUDES="--exclude 'build-x86*/' --exclude 'build-linux-x*/' --exclude 'build-android*/' --exclude 'build-win*/' --exclude 'build-mac*/' \
+ --exclude 'classes/' --exclude 'src/' \
+ --delete-excluded"
+
ssh $TARGET_UID@$TARGET_IP "\
-rsync -aAv --delete --delete-after --exclude 'build-x86*/' $HOST_UID@$HOST_IP::$HOST_RSYNC_ROOT/gluegen $TARGET_ROOT ; \
+rsync -aAv --delete --delete-after $RSYNC_EXCLUDES $HOST_UID@$HOST_IP::$HOST_RSYNC_ROOT/gluegen $TARGET_ROOT ; \
cd $TARGET_ROOT/gluegen/make ;
LD_LIBRARY_PATH=$BUILD_DIR/obj:$BUILD_DIR/test/build/natives \
java \