Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jun 1998 08:49:28 +0100
From:      Dom Mitchell <dom@phmit.demon.co.uk>
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   ports/6972: lesstif port won't install
Message-ID:  <E0ymCyG-0001tY-00@voodoo.pandhm.co.uk>

next in thread | raw e-mail | index | archive | help

>Number:         6972
>Category:       ports
>Synopsis:       lesstif port won't install because of strip on script
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Jun 17 00:50:01 PDT 1998
>Last-Modified:
>Originator:     Dom Mitchell
>Organization:
Palmer & Harvey McLane Ltd.
>Release:        FreeBSD 2.2.5-RELEASE i386
>Environment:

FreeBSD voodoo.pandhm.co.uk 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Mon Jun 15 15:44:13 BST 1998     root@voodoo.pandhm.co.uk:/usr/src/sys/compile/VOODOO  i386

>Description:

When doing a make install in /usr/ports/x11/lesstif, I get an error
message complaining that mxmkmf can't be stripped as it is a script.
This is because the Makefile in work/lesstif-0.85/lib/config specifies
INSTALL_SCRIPT to be INSTALL_PROGRAM.

>How-To-Repeat:

cd /usr/ports/lesstif
make
make install

>Fix:
	
Apply the following patch.

--- lib/config/Makefile.in.orig Wed Jun 17 08:48:21 1998
+++ lib/config/Makefile.in      Wed Jun 17 08:47:56 1998
@@ -44,7 +44,7 @@
 INSTALL = @INSTALL@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_DATA = @INSTALL_DATA@
-INSTALL_SCRIPT @INSTALL_SCRIPT@
+INSTALL_SCRIPT = install -c -m 555 -o bin -g bin
 transform = @program_transform_name@
 
 NORMAL_INSTALL = true

>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E0ymCyG-0001tY-00>