Your message dated Fri, 20 Dec 2024 00:32:31 +0000
with message-id <[email protected]>
and subject line patch
has caused the Debian Bug report #1037979,
regarding fakeroot FTCBFS for arm32: insufficient match for avoiding
AC_RUN_IFELSE
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.)
--
1037979: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1037979
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: fakeroot
Version: 1.31-1.2
User: [email protected]
Usertags: ftcbfs
Tags: patch upstream
Hi,
earlier, I sent a patch #980188 to make cross building just work for
linux. Unfortunately, I missed the 32bit arm case there. While it cross
builds successfully on most release architectures now, we need another
change to support them. I'm attaching the fix for your convenience.
Helmut
--- fakeroot-1.31.orig/configure.ac
+++ fakeroot-1.31/configure.ac
@@ -54,13 +54,16 @@
}]])],[ac_cv_use_ipc=sysv],[ac_cv_use_ipc=tcp],[ac_cv_use_ipc=cross])
if test $ac_cv_use_ipc = cross; then
- if test "$host_os" = linux-gnu; then
- ac_cv_use_ipc=sysv
- AC_MSG_RESULT([cross, guessing yes])
- else
- (set -o posix; set)
- AC_MSG_ERROR([cross compiling, unknown result for $host_os])
- fi
+ case "$host_os" in
+ (linux-gnu*)
+ ac_cv_use_ipc=sysv
+ AC_MSG_RESULT([cross, guessing yes])
+ ;;
+ (*)
+ (set -o posix; set)
+ AC_MSG_ERROR([cross compiling, unknown result for $host_os])
+ ;;
+ esac
elif test $ac_cv_use_ipc = "tcp"; then
AC_MSG_RESULT([No, using TCP])
else
--- End Message ---
--- Begin Message ---
Version: 1.36-1
This was included in 1.36.
--- End Message ---