29 lines
808 B
Diff
29 lines
808 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
|
|
Date: Tue, 11 Apr 2023 21:59:24 +0000
|
|
Subject: [PATCH] HACK: Don't run fuzzing tests
|
|
|
|
They take way too long.
|
|
---
|
|
Makefile.am | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 316109b16148..3ef672fe911f 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -2,12 +2,12 @@
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
-SUBDIRS = include . doc example fuzz xstc
|
|
+SUBDIRS = include . doc example xstc
|
|
if WITH_PYTHON
|
|
SUBDIRS += python
|
|
endif
|
|
|
|
-DIST_SUBDIRS = include . doc example fuzz python xstc
|
|
+DIST_SUBDIRS = include . doc example python xstc
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/include -I$(srcdir)/include -DSYSCONFDIR='"$(sysconfdir)"'
|
|
|