X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=distro%2Farchlinux%2Frelease%2Fbuild_fix.patch;fp=distro%2Farchlinux%2Frelease%2Fbuild_fix.patch;h=ec3af0dc04fd4eab55d2ef2d495e211f3a2b60ab;hp=0000000000000000000000000000000000000000;hb=90eed12e97ffe724b29071edda774196959254a3;hpb=4c4aa5534c34a35560ab1936bc84d37ee6e869e6 diff --git a/distro/archlinux/release/build_fix.patch b/distro/archlinux/release/build_fix.patch new file mode 100644 index 0000000..ec3af0d --- /dev/null +++ b/distro/archlinux/release/build_fix.patch @@ -0,0 +1,18 @@ +diff --git a/test.c b/test.c +index 0af7477..7722af2 100644 +--- a/test.c ++++ b/test.c +@@ -116,9 +116,9 @@ FILE ** task_popen(const char *command, const char *mode) { + close(errhandle[0]); + + /* see piping documentation for this sillyness :P */ +- close(0), dup(inhandle [0]); +- close(1), dup(outhandle[1]); +- close(2), dup(errhandle[1]); ++ close(0); (void)!dup(inhandle [0]); ++ close(1); (void)!dup(outhandle[1]); ++ close(2); (void)!dup(errhandle[1]); + + execvp(*argv, argv); + exit(EXIT_FAILURE); +