From df52c9f477ba2801ed3535762cfa6e89ce9d6812 Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 13 Sep 2013 22:01:26 +0200 Subject: python3: fix the MacOSX build here too /usr/bin/install -s will invoke "xcrun strip", and there are a few hardocded install_name_tool left. Change-Id: I839af379320b4886c45a12c9a1d4fa88d2ef0059 --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index a12823ac97f7..c145970e4e82 100644 --- a/configure.ac +++ b/configure.ac @@ -2722,6 +2722,7 @@ if test $_os = Darwin; then INSTALL_NAME_TOOL=`xcrun -find install_name_tool` AR=`xcrun -find ar` NM=`xcrun -find nm` + STRIP=`xcrun -find strip` LIBTOOL=`xcrun -find libtool` RANLIB=`xcrun -find ranlib` ;; @@ -2885,6 +2886,7 @@ if test $_os = iOS; then INSTALL_NAME_TOOL=`xcrun -find install_name_tool` AR=`xcrun -find ar` NM=`xcrun -find nm` + STRIP=`xcrun -find strip` LIBTOOL=`xcrun -find libtool` RANLIB=`xcrun -find ranlib` fi -- cgit