summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2025-01-25 17:20:32 +0000
committermidipix <writeonce@midipix.org>2025-01-25 17:20:32 +0000
commit609018e02b4ea5662b8d57c6936c6255b852bbe9 (patch)
treedd49d057445dd4ebfa0e6b38f1c21d6c3222e680
parent6b26fe25d4ed0bcddb3be7a802cca54b0ee7b4af (diff)
downloadslibtool-609018e02b4ea5662b8d57c6936c6255b852bbe9.tar.bz2
slibtool-609018e02b4ea5662b8d57c6936c6255b852bbe9.tar.xz
slibtool.m4: fix embedding of the SLIBTOOL_SYSROOT & SLIBTOOL_FLAGS variables.HEADmain
-rw-r--r--m4/slibtool.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/slibtool.m4 b/m4/slibtool.m4
index e2e6ad5..b1ed75b 100644
--- a/m4/slibtool.m4
+++ b/m4/slibtool.m4
@@ -242,7 +242,7 @@ slibtool_set_flavor()
_/*)
SLIBTOOL_SYSROOT="--sysroot=${slibtool_sysroot}"
- SLIBTOOL="${SLIBTOOL} \$(SLIBTOOL_SYSROOT)"
+ SLIBTOOL="${SLIBTOOL} ${SLIBTOOL_SYSROOT}"
;;
*)
@@ -536,7 +536,7 @@ _SLIBTOOL_ARG_WITH([sysroot],[absolute path to the target's sysroot],[slibtool_s
# --------------------
slibtool_set_flavor
LIBTOOL='$(SLIBTOOL)'
-SLIBTOOL="${SLIBTOOL} \$(SLIBTOOL_FLAGS)"
+SLIBTOOL="${SLIBTOOL} ${SLIBTOOL_FLAGS}"
AC_SUBST([LIBTOOL])
AC_SUBST([SLIBTOOL])