Your message dated Mon, 20 Jul 2026 08:12:43 +0200
with message-id
<CAAajCMbDA9L2pSNJOvCsE=ya0sos8fovsf3czdfewd5qtcc...@mail.gmail.com>
and subject line Re: gtk-nocsd FTCBFS: hard codes the build architecture
pkg-config
has caused the Debian Bug report #1132430,
regarding gtk-nocsd FTCBFS: hard codes the build architecture pkg-config
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1132430: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1132430
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: gtk-nocsd
Version: 0~20260321+0b77e1b-1
Tags: patch upstream
User: [email protected]
Usertags: ftcbfs
gtk-nocsd fails to cross build from source, because the upstream
Makefile hard codes the build architecture pkg-config. Once making it
substitutable, debhelper provides a working substitution and the build
succeeds. I'm attaching a patch for your convenience.
Helmut
--- gtk-nocsd-0~20260321+0b77e1b.orig/Makefile
+++ gtk-nocsd-0~20260321+0b77e1b/Makefile
@@ -29,10 +29,11 @@
# Compilation
CC ?= cc
-CFLAGS += `pkg-config --cflags libadwaita-1 gobject-2.0 gio-2.0` -Wall -Wextra \
+PKG_CONFIG ?= pkg-config
+CFLAGS += `$(PKG_CONFIG) --cflags libadwaita-1 gobject-2.0 gio-2.0` -Wall -Wextra \
-Wconversion -Wstrict-prototypes
ifndef NOLDFLAGS
- LDFLAGS += `pkg-config --libs gobject-2.0 gio-2.0`
+ LDFLAGS += `$(PKG_CONFIG) --libs gobject-2.0 gio-2.0`
else
LDFLAGS =
endif
--- End Message ---
--- Begin Message ---
Version: 4.0-1
https://crossqa.debian.net/src/gtk-nocsd
Thank you,
Jeremy BĂcha
--- End Message ---