diff options
author | ats <ats@FreeBSD.org> | 1995-02-13 21:02:31 +0800 |
---|---|---|
committer | ats <ats@FreeBSD.org> | 1995-02-13 21:02:31 +0800 |
commit | 335125926b79a9cb86b979ddca278cd4c0bf37f1 (patch) | |
tree | 6be9f4abdb9144b49202c2feae74757327bb35d7 /editors/emacs22 | |
parent | 85943c0708eecd611bbb92be6ea9f3eefad26c2e (diff) | |
download | freebsd-ports-gnome-335125926b79a9cb86b979ddca278cd4c0bf37f1.tar.gz freebsd-ports-gnome-335125926b79a9cb86b979ddca278cd4c0bf37f1.tar.zst freebsd-ports-gnome-335125926b79a9cb86b979ddca278cd4c0bf37f1.zip |
Add a "STRIP= " to the Makefile to prevent a problem that install will be
called with a "-s" flag for shell-scripts, fells flat on the nose and doesn't
install them.
We have a serious problem with name overloading here. The bsd.port.mk file
uses INSTALL and INSTALL_PROGRAM that is also used from GNU's autoconfigure
script. If configure detects them it uses it happily with sometimes surprising
results. Normally configure know that shell scripts doesn't need the "-s"
flag but our INSTALL in bsd.port.mk always uses the "-s" flag and overides
configure's autodetection of the correct install and the installflags.
Diffstat (limited to 'editors/emacs22')
-rw-r--r-- | editors/emacs22/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/emacs22/Makefile b/editors/emacs22/Makefile index 64a468da937a..674fcd3c6e02 100644 --- a/editors/emacs22/Makefile +++ b/editors/emacs22/Makefile @@ -3,12 +3,13 @@ # Date created: 29 October 1994 # Whom: jkh # -# $Id: Makefile,v 1.10 1995/01/05 09:00:18 jkh Exp $ +# $Id: Makefile,v 1.11 1995/01/09 12:06:29 jkh Exp $ # DISTNAME= emacs-19.28 USE_GMAKE= yes HAS_CONFIGURE= yes +STRIP= CONFIGURE_ARGS= i386--freebsd --prefix=${PREFIX} MASTER_SITES= ftp://prep.ai.mit.edu/pub/gnu/ |