From 429deaa0cc99a23cd92692654564fd1ebe97f0dd Mon Sep 17 00:00:00 2001 From: michaelh Date: Wed, 11 Jul 2001 03:18:50 +0000 Subject: [PATCH] Fixed up naming on sdcpp git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1055 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- support/cpp2/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/support/cpp2/Makefile.in b/support/cpp2/Makefile.in index 0a618a9a..94f125e0 100644 --- a/support/cpp2/Makefile.in +++ b/support/cpp2/Makefile.in @@ -43,6 +43,7 @@ AR = ar AR_FLAGS = rc RANLIB = @RANLIB@ SHELL = /bin/sh +STRIP = @STRIP@ # on sysV, define this as cp. INSTALL = @INSTALL@ # Some systems may be missing symbolic links, regular links, or both. @@ -86,6 +87,8 @@ includedir = $(local_prefix)/include # where the info files go exeext = @host_exeext@ +transform = @program_transform_name@ + # Top build directory, relative to here. top_builddir = . @@ -102,7 +105,8 @@ OBSTACK=obstack.o # End of variables for you to override. install: all - $(INSTALL) -s $(TARGET) $(bindir)/sdcpp + $(INSTALL) $(TARGET) `echo $(bindir)/sdcpp|sed '$(transform)'` + $(STRIP) -s `echo $(bindir)/sdcpp|sed '$(transform)'` clean: -rm -f $(TARGET) *.o core libcpp.a -- 2.30.2