Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Oct 2018 11:06:51 +0000
From:      bugzilla-noreply@freebsd.org
To:        tcltk@FreeBSD.org
Subject:   [Bug 232732] build of expect in lang/expect does not install autoexpect script correctly
Message-ID:  <bug-232732-30738-hBmDFgv0bh@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-232732-30738@https.bugs.freebsd.org/bugzilla/>
References:  <bug-232732-30738@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D232732

Pietro Cerutti <gahr@FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|New                         |In Progress

--- Comment #13 from Pietro Cerutti <gahr@FreeBSD.org> ---
Better yet, modify the scripts to invoke the correct TCLSH. That would be as
simple as:

@@ -9,11 +9,12 @@
        -for i in $(SCRIPT_LIST) ; do \
          if [ -f $$i ] ; then \
 -          $(INSTALL_PROGRAM) $$i $(DESTDIR)$(prefix)/bin/$$i ; \
++          sed -i'' -e 's|tclsh|${TCLSH_PROG}|' $$i ; \
 +          $(INSTALL_SCRIPT) $$i $(DESTDIR)$(datadir)/$$i ; \
            rm -f $$i ; \
          else true; fi ; \
        done

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-232732-30738-hBmDFgv0bh>