-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd985b7
commit 49fcf8b
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 2edb528dcbc848f9f9b3e11433a7d150d7351caa Mon Sep 17 00:00:00 2001 | ||
From: Sam Nazarko <[email protected]> | ||
Date: Sat, 11 May 2024 18:12:41 +0100 | ||
Subject: [PATCH] Fix build where README file cannot be located by passing | ||
foreign parameter to automake | ||
|
||
Signed-off-by: Sam Nazarko <[email protected]> | ||
--- | ||
configure.ac | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/configure.ac b/configure.ac | ||
index 77d6aed..6432334 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -10,7 +10,7 @@ AC_CONFIG_MACRO_DIRS([m4]) | ||
AC_CONFIG_AUX_DIR(build-aux) | ||
|
||
dnl Automake initialization | ||
-AM_INIT_AUTOMAKE([1.16 check-news dist-bzip2]) | ||
+AM_INIT_AUTOMAKE([1.16 check-news dist-bzip2 foreign]) | ||
|
||
dnl Store the host string without "unknown" for cross-compile use | ||
host_str=$host | ||
-- | ||
2.34.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters