Skip to content

Commit a8b18ff

Browse files
committed
disable Java on ubuntu builds
1 parent 2f590b6 commit a8b18ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

debian/rules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ SET_LDL=LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(CURDIR)/src/runtime/c/.libs
2424

2525
override_dh_auto_build:
2626
cd src/runtime/python && EXTRA_INCLUDE_DIRS=$(CURDIR)/src/runtime/c EXTRA_LIB_DIRS=$(CURDIR)/src/runtime/c/.libs python setup.py build
27-
cd src/runtime/java && make CFLAGS="-I$(CURDIR)/src/runtime/c -L$(CURDIR)/src/runtime/c/.libs" INSTALL_PATH=/usr
27+
# cd src/runtime/java && make CFLAGS="-I$(CURDIR)/src/runtime/c -L$(CURDIR)/src/runtime/c/.libs" INSTALL_PATH=/usr
2828
echo $(SET_LDL)
2929
-$(SET_LDL) cabal v1-build
3030

3131
override_dh_auto_install:
3232
$(SET_LDL) cabal v1-copy --destdir=$(CURDIR)/debian/gf
3333
cd src/runtime/c && bash setup.sh copy prefix=$(CURDIR)/debian/gf/usr
3434
cd src/runtime/python && python setup.py install --prefix=$(CURDIR)/debian/gf/usr
35-
cd src/runtime/java && make INSTALL_PATH=$(CURDIR)/debian/gf/usr install
35+
# cd src/runtime/java && make INSTALL_PATH=$(CURDIR)/debian/gf/usr install
3636
D="`find debian/gf -name site-packages`" && [ -n "$$D" ] && cd $$D && cd .. && mv site-packages dist-packages
3737

3838
override_dh_auto_clean:
3939
rm -fr dist/build
4040
-cd src/runtime/python && rm -fr build
41-
-cd src/runtime/java && make clean
41+
# -cd src/runtime/java && make clean
4242
-cd src/runtime/c && make clean
4343

4444
override_dh_auto_test:

0 commit comments

Comments
 (0)