From 3f78c8cb7f0e025a61734af8d9b9ad70e1b66e40 Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Wed, 16 Dec 2020 11:44:42 -0800 Subject: c++tools: fix install-strip [PR 98328] I'd missed an install-strip rule in c++tools. Here it is, cribbed from gcc/ subdir. c++tools/ * Makefile.in (INSTALL): Replace with ... (INSTALL_PROGRAM): ... this. (INSTALL_STRIP_PROGRAM): New. (install-strip): New target. (install): Use INSTALL_PROGRAM. * configure.ac: Add INSTALL_PROGRAM. * configure: Regenerated. --- c++tools/configure | 2 ++ 1 file changed, 2 insertions(+) (limited to 'c++tools/configure') diff --git a/c++tools/configure b/c++tools/configure index 82975120393..e8658aac16e 100755 --- a/c++tools/configure +++ b/c++tools/configure @@ -2060,6 +2060,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' -- cgit v1.2.3