From 7c4222719026a02ea80569524dba8f352d2f5a48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sat, 17 Apr 2021 11:32:07 +0100 Subject: [PATCH] Fix intermittent error when bootstrapping automake-1.13.4 Our perl does not seem to recognize umask keyword Fixes: #93 --- sysa/automake-1.13.4/patches/bootstrap.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sysa/automake-1.13.4/patches/bootstrap.patch diff --git a/sysa/automake-1.13.4/patches/bootstrap.patch b/sysa/automake-1.13.4/patches/bootstrap.patch new file mode 100644 index 00000000..57070766 --- /dev/null +++ b/sysa/automake-1.13.4/patches/bootstrap.patch @@ -0,0 +1,17 @@ +SPDX-FileCopyrightText: 2021 Andrius Štikonas + +SPDX-License-Identifier: GPL-2.0-or-later + +Fixes dependency of bootstrapping script + +--- gen-testsuite-part 2017-06-16 21:46:16.000000000 +0100 ++++ gen-testsuite-part 2021-04-01 00:02:46.801098617 +0100 +@@ -64,8 +64,6 @@ + $func->($fh); + close $fh + or die "$me: closing '$tmpfile': $!\n"; +- chmod ($perms & ~umask, $tmpfile) +- or die "$me: cannot change perms for '$tmpfile': $!\n"; + rename ($tmpfile, $outfile) + or die "$me: renaming '$tmpfile' -> '$outfile: $!\n'"; + }