Remove the install option 'strip executable', which does not seem to work in Solaris

This commit is contained in:
jjgarcia 2005-07-14 12:04:04 +00:00
parent 3149ba4bf9
commit 4a0e2d8dbb

View file

@ -105,8 +105,10 @@ install: BUILD-STAMP install-base
cd doc; $(MAKE) prefix=$(prefix) DESTDIR=$(DESTDIR) install
install-base:
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(libdir)/h
# Here we would use the option -s but the install program in sourceforge-solaris
# is broken.
for i in $(TARGETS); do \
$(INSTALL_PROGRAM) -s $$i $(DESTDIR)$(bindir); \
$(INSTALL_PROGRAM) $$i $(DESTDIR)$(bindir); \
done;
$(INSTALL_SCRIPT) ecl-config $(DESTDIR)$(bindir)
for i in BUILD-STAMP help.doc ; do \