+2008-01-18 Guillem Jover <guillem@debian.org>
+
+ * m4/arch.m4 (_DPKG_ARCHITECTURE): Do not use backticks inside double
+ quotes, to support ancient shells.
+ * m4/libs.m4 (DPKG_LIB_SELINUX): Likewise.
+
2008-01-18 Guillem Jover <guillem@debian.org>
* utils/start-stop-daemon.c (do_help): Coalesce mandatory options
* Fix start-stop-daemon --help output to state that --name is one of the
possible required options to use. Closes: #354999
* Demote dselect from priority important to optional. Closes: #461327
+ * Fix portability issues on HP-UX, by not using backticks inside double
+ quotes in m4 files. Closes: #24514
[ Frank Lichtenheld ]
* Make the -L option of dpkg-parsechangelog actually work (it's
# the target architecture, to avoid duplicating its logic.
AC_DEFUN([_DPKG_ARCHITECTURE], [
AC_REQUIRE([AC_CANONICAL_SYSTEM])dnl
-$2="`cd $srcdir/scripts; \
- PERL5LIB=$(pwd) ./dpkg-architecture.pl -t$target -q$1 2>/dev/null`"
+$2=`cd $srcdir/scripts; \
+ PERL5LIB=$(pwd) ./dpkg-architecture.pl -t$target -q$1 2>/dev/null`
])# _DPKG_ARCHITECURE
# DPKG_CPU_TYPE
[AC_DEFINE(WITH_SELINUX, 1,
[Define to 1 to compile in SELinux support])
if test "x$with_selinux" = "xstatic"; then
- dpkg_selinux_libs="-Wl,-Bstatic `pkg-config --static --libs libselinux` -Wl,-Bdynamic"
+ dpkg_selinux_libs="-Wl,-Bstatic "`pkg-config --static --libs libselinux`" -Wl,-Bdynamic"
else
- dpkg_selinux_libs="`pkg-config --libs libselinux`"
+ dpkg_selinux_libs=`pkg-config --libs libselinux`
fi
SELINUX_LIBS="${SELINUX_LIBS:+$SELINUX_LIBS }$dpkg_selinux_libs"
with_selinux="yes"],