diff --git a/go-compilers.spec b/go-compilers.spec index e15c5cd..39f2797 100644 --- a/go-compilers.spec +++ b/go-compilers.spec @@ -1,6 +1,6 @@ Name: go-compilers Version: 1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Go language compilers for various architectures Group: Development/Tools License: GPLv3+ @@ -71,6 +71,9 @@ install -m 644 -D %{SOURCE1} %{buildroot}%{_rpmconfigdir}/macros.d/macros.gcc-go %endif %changelog +* Wed Apr 13 2016 Dan HorĂ¡k - 1-7 +- fix bug in gcc-go version of gotest macro + * Wed Feb 03 2016 Fedora Release Engineering - 1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/macros.gcc-go-compiler b/macros.gcc-go-compiler index 0e656b0..6ce4825 100644 --- a/macros.gcc-go-compiler +++ b/macros.gcc-go-compiler @@ -12,6 +12,5 @@ %gobuild(o:) go build -compiler gccgo -gccgoflags "$RPM_OPT_FLAGS ${LDFLAGS:-}" -a -v -x %{?**}; # Define commands for testing -%gotest() go test -compiler gccgo -gccgoflags "$RPM_OPT_FLAGS ${LDFLAGS:-}" - %{?**}; +%gotest() go test -compiler gccgo -gccgoflags "$RPM_OPT_FLAGS ${LDFLAGS:-}" %{?**};