Skip to content

Commit

Permalink
Fix build break resulting from rearranging R and h2o builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkraljevic committed Aug 27, 2013
1 parent 1cbf9ee commit 905835b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ build:
$(MAKE) package

build_h2o:
(export PROJECT_VERSION=$(PROJECT_VERSION); ./build.sh doc)
(export PROJECT_VERSION=$(PROJECT_VERSION); ./build.sh noclean doc)

package:
rm -fr target/h2o-$(PROJECT_VERSION)
Expand Down
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,11 @@ function junit() {
"$JAVA" -ea -cp ${JAR_FILE} water.Boot -mainClass water.JUnitRunner
}

clean
if [ "$1" = "noclean" ]; then
shift
else
clean
fi
if [ "$1" = "clean" ]; then exit 0; fi
build_classes
if [ "$1" = "compile" ]; then exit 0; fi
Expand Down

0 comments on commit 905835b

Please sign in to comment.