lmi-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lmi-commits] [lmi] master 60508b5 1/2: Fix defect introduced 20190412T0


From: Greg Chicares
Subject: [lmi-commits] [lmi] master 60508b5 1/2: Fix defect introduced 20190412T0017Z: premature expansion
Date: Thu, 18 Apr 2019 10:59:36 -0400 (EDT)

branch: master
commit 60508b5cec92a11bc76c43ad37d1069dd01251d8
Author: Gregory W. Chicares <address@hidden>
Commit: Gregory W. Chicares <address@hidden>

    Fix defect introduced 20190412T0017Z: premature expansion
    
    Commit aea8ef13fb2 invoked 'config.guess' before extracting it from the
    library tarball. Immediate invocations elsewhere (in this makefile and
    in PETE's) are seasonable.
---
 install_libxml2_libxslt.make | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/install_libxml2_libxslt.make b/install_libxml2_libxslt.make
index 2dfe4d4..39e9ca5 100644
--- a/install_libxml2_libxslt.make
+++ b/install_libxml2_libxslt.make
@@ -76,7 +76,7 @@ xz_cflags := \
 $(xz_version)_options := \
   --prefix=$(prefix) \
   --exec-prefix=$(exec_prefix) \
-  --build=$(shell $(build_dir)/$(xz_version)/build-aux/config.guess) \
+  --build=`$(build_dir)/$(xz_version)/build-aux/config.guess` \
   --host=$(host_type) \
   --disable-dependency-tracking \
   CFLAGS="-g -O2 $(xz_cflags)" \
@@ -126,7 +126,7 @@ xmlsoft_common_options := \
 $(libxml2_version)_options := \
   --prefix=$(prefix) \
   --exec-prefix=$(exec_prefix) \
-  --build=$(shell $(build_dir)/$(libxml2_version)/config.guess) \
+  --build=`$(build_dir)/$(libxml2_version)/config.guess` \
   --host=$(host_type) \
   $(xmlsoft_common_options) \
   --with-lzma=$(prefix) \
@@ -145,7 +145,7 @@ $(libxml2_version)_options := \
 $(libxslt_version)_options := \
   --prefix=$(prefix) \
   --exec-prefix=$(exec_prefix) \
-  --build=$(shell $(build_dir)/$(libxslt_version)/config.guess) \
+  --build=`$(build_dir)/$(libxslt_version)/config.guess` \
   --host=$(host_type) \
   $(xmlsoft_common_options) \
   --with-libxml-prefix=$(exec_prefix) \



reply via email to

[Prev in Thread] Current Thread [Next in Thread]