forked from pool/automake
cd603ea12f
- Add etags to BuildRequires for testsuite - Add automake-testsuite-vala-gcc10.patch: fixes testsuite OBS-URL: https://build.opensuse.org/request/show/820641 OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/automake?expand=0&rev=80
24 lines
445 B
Diff
24 lines
445 B
Diff
https://lists.gnu.org/archive/html/bug-automake/2020-06/msg00003.html
|
|
|
|
diff --git a/t/vala-mix2.sh b/t/vala-mix2.sh
|
|
index 8e6a214..933a3ff 100644
|
|
--- a/t/vala-mix2.sh
|
|
+++ b/t/vala-mix2.sh
|
|
@@ -44,7 +44,7 @@ int main ()
|
|
END
|
|
|
|
cat > foo.h <<'END'
|
|
-int foo;
|
|
+extern int foo;
|
|
int bar (void);
|
|
int baz (void);
|
|
END
|
|
@@ -56,7 +56,7 @@ END
|
|
|
|
cat > baz.c <<'END'
|
|
#include "foo.h"
|
|
-extern int foo = 0;
|
|
+int foo = 0;
|
|
int baz (void) { return 0; }
|
|
END
|