From d886eeda27d832193a8db544e782d00340a89807 Mon Sep 17 00:00:00 2001 From: "Hyang-Ah (Hana) Kim" Date: Mon, 6 Apr 2015 11:26:41 -0400 Subject: [PATCH] bind/java: fix testpkg's gobind generate command. Change-Id: I36494baac428ed9fdd777d2b03bf23a9cb2568b5 Reviewed-on: https://go-review.googlesource.com/8627 Reviewed-by: David Crawshaw --- bind/java/testpkg/testpkg.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bind/java/testpkg/testpkg.go b/bind/java/testpkg/testpkg.go index c4bde1b..bd7f32b 100644 --- a/bind/java/testpkg/testpkg.go +++ b/bind/java/testpkg/testpkg.go @@ -1,8 +1,8 @@ // Package testpkg contains bound functions for testing the cgo-JNI interface. package testpkg -//go:generate gobind -lang=go -output=go_testpkg/go_testpkg.go . -//go:generate gobind -lang=java -output=Testpkg.java . +//go:generate gobind -lang=go -outdir=go_testpkg . +//go:generate gobind -lang=java -outdir=. . import ( "errors" "fmt"