[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <176062915483.3343688.17108550511096524632.stgit@frogsfrogsfrogs>
Date: Thu, 16 Oct 2025 08:40:02 -0700
From: "Darrick J. Wong" <djwong@...nel.org>
To: tytso@....edu
Cc: linux-ext4@...r.kernel.org, linux-ext4@...r.kernel.org
Subject: [PATCH 01/16] debian/rules: remove extra pkg-config
From: Darrick J. Wong <djwong@...nel.org>
Not sure why the definition for deb_udevudevdir calls pkg-config with
the string "pkg-config" as its first argument. Even more crazily, this
happens on Debian 12:
$ pkg-config --variable=udevdir udev
/lib/udev
$ pkg-config pkg-config --variable=udevdir udev
/lib/udev
Note the leading space! Given the sed script in the same definition,
I'm guessing that the extra space is NOT the desired behavior.
Cc: <linux-ext4@...r.kernel.org> # v1.47.1
Fixes: 288de9fb396811 ("debian: acknowledge NMU'ed changes to 1.47.0-2.4")
Signed-off-by: "Darrick J. Wong" <djwong@...nel.org>
---
debian/rules | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/debian/rules b/debian/rules
index 4cb80652115317..c88675c9228bd0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,7 +16,7 @@ endif
ifeq ($(DEB_HOST_ARCH_OS), linux)
export deb_systemdsystemunitdir = $(shell pkg-config --variable=systemdsystemunitdir systemd | sed s,^/,,)
-export deb_udevudevdir = $(shell pkg-config pkg-config --variable=udevdir udev | sed s,^/,,)
+export deb_udevudevdir = $(shell pkg-config --variable=udevdir udev | sed s,^/,,)
endif
ifneq ($(filter pkg.e2fsprogs.no-fuse2fs,$(DEB_BUILD_PROFILES)),)
Powered by blists - more mailing lists