summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorØrjan Malde <red@foxi.me>2024-05-04 14:39:03 +0200
committerØrjan Malde <red@foxi.me>2024-05-04 14:39:03 +0200
commitdb1f1062eead4e95d972890bec70c1f84caab1a9 (patch)
tree3cb4d88aaed495b14ad1a734d07d226702e302e7
parente5d0ab7d28dd37f6dc60a6990f4de68311d57e40 (diff)
downloadmidipix_build-db1f1062eead4e95d972890bec70c1f84caab1a9.tar.bz2
midipix_build-db1f1062eead4e95d972890bec70c1f84caab1a9.tar.xz
patches/mblaze.local.patch: drop errno check on strtol
Signed-off-by: Ørjan Malde <red@foxi.me>
-rw-r--r--patches/mblaze.local.patch20
1 files changed, 18 insertions, 2 deletions
diff --git a/patches/mblaze.local.patch b/patches/mblaze.local.patch
index 154596d2..b4840212 100644
--- a/patches/mblaze.local.patch
+++ b/patches/mblaze.local.patch
@@ -1,6 +1,6 @@
diff -ru mblaze.orig/GNUmakefile mblaze/GNUmakefile
---- mblaze.orig/GNUmakefile 2024-05-03 20:09:12.010066998 +0200
-+++ mblaze/GNUmakefile 2024-05-03 20:17:36.525513874 +0200
+--- mblaze.orig/GNUmakefile 2024-05-03 20:18:24.555511858 +0200
++++ mblaze/GNUmakefile 2024-05-04 14:37:13.290044003 +0200
@@ -1,7 +1,7 @@
CFLAGS?=-g -O2 -fstack-protector-strong -D_FORTIFY_SOURCE=2
override CFLAGS:=-Wall -Wno-switch -Wextra $(CFLAGS)
@@ -10,3 +10,19 @@ diff -ru mblaze.orig/GNUmakefile mblaze/GNUmakefile
OS := $(shell uname)
+diff -ru mblaze.orig/seq.c mblaze/seq.c
+--- mblaze.orig/seq.c 2024-05-03 20:09:12.020066998 +0200
++++ mblaze/seq.c 2024-05-04 14:37:58.023375461 +0200
+@@ -207,12 +207,7 @@
+ d = 0;
+ b = a;
+ } else {
+- errno = 0;
+ d = strtol(a, &b, 10);
+- if (errno != 0) {
+- perror("strtol");
+- exit(2);
+- }
+ }
+
+ *out = base + d;