Fixing clean build
authorJan Lahoda <jlahoda@netbeans.org>
Sun, 03 Feb 2013 00:11:08 +0100
changeset 9259132c333319f
parent 924 e5114e185f31
child 926 d1e1adedc8cc
child 929 57dc42a0fcd6
Fixing clean build
hudson/trunk
language/build.sh
     1.1 --- a/hudson/trunk	Tue Jan 15 16:13:16 2013 +0100
     1.2 +++ b/hudson/trunk	Sun Feb 03 00:11:08 2013 +0100
     1.3 @@ -41,13 +41,13 @@
     1.4  
     1.5  ant -Dnbplatform.active.dir=$PLATFORM -f lib/download.xml download copy-from-platform
     1.6  
     1.7 -SUBPROJECTS="remoting duplicates cmdline language";
     1.8 +SUBPROJECTS="remoting duplicates language cmdline";
     1.9  
    1.10  for subproject in $SUBPROJECTS; do
    1.11      (cd $subproject; ./build.sh -Dnbplatform.default.harness.dir=$PLATFORM/harness -Dnbplatform.default.netbeans.dest.dir=$PLATFORM -Dnbplatform.active.dir=$PLATFORM) || exit 1
    1.12  done
    1.13  
    1.14 -for subproject in $SUBPROJECTS; do
    1.15 +for subproject in language remoting; do
    1.16      if [ -x $subproject/post-build.sh ] ; then
    1.17          (cd $subproject; ./post-build.sh -Dnbplatform.default.harness.dir=$PLATFORM/harness -Dnbplatform.default.netbeans.dest.dir=$PLATFORM -Dnbplatform.active.dir=$PLATFORM) || exit 1
    1.18      fi;
     2.1 --- a/language/build.sh	Tue Jan 15 16:13:16 2013 +0100
     2.2 +++ b/language/build.sh	Sun Feb 03 00:11:08 2013 +0100
     2.3 @@ -1,4 +1,3 @@
     2.4  #!/bin/bash
     2.5  (cd ide; ant "$@" clean && ant "$@" nbms && ant "$@" test) || exit 1
     2.6 -(cd server/web/language.web.api; ant "$@" clean && ant "$@") || exit 1
     2.7