Skip to content

Commit ea0e115

Browse files
author
Release Manager
committed
gh-39926: Fix gap spkg-configure.m4 <!-- ^ Please provide a concise and informative title. --> <!-- ^ Don't put issue numbers in the title, do this in the PR description below. --> <!-- ^ For example, instead of "Fixes #12345" use "Introduce new method to calculate 1 + 2". --> <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> <!-- v If this PR resolves an open issue, please link to it here. For example, "Fixes #12345". --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [ ] The title is concise and informative. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> cc @dimpase URL: #39926 Reported by: Isuru Fernando Reviewer(s): Dima Pasechnik
2 parents 6f2f46a + e47a243 commit ea0e115

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

build/pkgs/gap/spkg-configure.m4

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,8 @@ SAGE_SPKG_CONFIGURE([gap], [
5454
AC_LANG_PROGRAM(
5555
[[#include <gap/libgap-api.h>]],
5656
[[
57-
int main(int argc, char** argv) {
58-
GAP_Initialize(0, 0, 0, 0, 0);
59-
return 0;
60-
}
57+
GAP_Initialize(0, 0, 0, 0, 0);
58+
return 0;
6159
]])
6260
],[
6361
AC_MSG_RESULT([yes])

0 commit comments

Comments
 (0)