1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
From 7bc0237df1b0d3faeef59fea933f51941100b15e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Krzysztof=20Wilczy=C5=84ski?= <kw@linux.com>
Date: Tue, 19 Jul 2022 23:50:48 +0900
Subject: [PATCH] Don't attempt to build tests, documentation and Python
bindings
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Krzysztof WilczyĆski <kw@linux.com>
---
Makefile.am | 2 +-
Makefile.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index e816779..980cafa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,7 +3,7 @@ ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = MAINT RELEASE-PROCEDURE README.DEVELOPER README.md \
m4/visibility.m4
-SUBDIRS = src magic tests doc python
+SUBDIRS = src magic
# This variable must have 'exec' in its name, in order to be installed
# by 'install-exec' target (instead of default 'install-data')
diff --git a/Makefile.in b/Makefile.in
index e2f0673..2f02b82 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -361,7 +361,7 @@ ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = MAINT RELEASE-PROCEDURE README.DEVELOPER README.md \
m4/visibility.m4
-SUBDIRS = src magic tests doc python
+SUBDIRS = src magic
# This variable must have 'exec' in its name, in order to be installed
# by 'install-exec' target (instead of default 'install-data')
--
2.37.1
|