34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
|
From 8b86c6c0b520f6856f9f8dba09c97114113d3244 Mon Sep 17 00:00:00 2001
|
||
|
From: Colin Walters <walters@verbum.org>
|
||
|
Date: Thu, 20 Jul 2023 09:13:43 -0400
|
||
|
Subject: [PATCH 17/17] Add an always-on `inode64` feature
|
||
|
|
||
|
As I (and others) will be backporting the fix in
|
||
|
https://github.com/ostreedev/ostree/pull/2874/commits/de6fddc6adee09a93901243dc7074090828a1912
|
||
|
pretty far, I want a way for sysadmins and OS builders to
|
||
|
be able to reliably see when their version of ostree has this fix
|
||
|
(Because comparing version numbers isn't portable).
|
||
|
---
|
||
|
configure.ac | 5 ++++-
|
||
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/configure.ac b/configure.ac
|
||
|
index 3bd735ed..b58d0a67 100644
|
||
|
--- a/configure.ac
|
||
|
+++ b/configure.ac
|
||
|
@@ -82,7 +82,10 @@ AM_COND_IF([BUILDOPT_TSAN],
|
||
|
LT_PREREQ([2.2.4])
|
||
|
LT_INIT([disable-static])
|
||
|
|
||
|
-OSTREE_FEATURES=""
|
||
|
+dnl We have an always-on feature now to signify the fix for
|
||
|
+dnl https://github.com/ostreedev/ostree/pull/2874/commits/de6fddc6adee09a93901243dc7074090828a1912
|
||
|
+dnl "commit: fix ostree deployment on 64-bit inode fs"
|
||
|
+OSTREE_FEATURES="inode64"
|
||
|
AC_SUBST([OSTREE_FEATURES])
|
||
|
|
||
|
GLIB_TESTS
|
||
|
--
|
||
|
2.40.1
|
||
|
|