fixes a problem with vim's link.sh under ELF that result in a

can't load library 'crtend.o' when running vim; thanks drahn@ and
Marc Matteo <marcm@lectroid.net>
This commit is contained in:
lebel 2002-07-31 15:52:33 +00:00
parent fa29ad43ef
commit 81cd9d5949

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.56 2002/07/21 20:47:44 lebel Exp $ # $OpenBSD: Makefile,v 1.57 2002/07/31 15:52:33 lebel Exp $
COMMENT= "vi clone, many additional features" COMMENT= "vi clone, many additional features"
COMMENT-lang= "vi clone, NLS subpackage" COMMENT-lang= "vi clone, NLS subpackage"
@ -103,9 +103,15 @@ WRKSRC= ${WRKDIST}/src
SUBST_VARS= VERSION SUBST_VARS= VERSION
.include <bsd.own.mk>
# don't try to regenerate the configure script. Works around the fact that # don't try to regenerate the configure script. Works around the fact that
# auto/configure.in is newer than auto/configure. # auto/configure.in is newer than auto/configure.
post-patch: post-patch:
touch ${WRKBUILD}/auto/configure touch ${WRKBUILD}/auto/configure
# link.sh messes up the final executables when linking under ELF
.if ${ELF_TOOLCHAIN} == yes
touch ${WRKBUILD}/auto/link.sed
.endif
.include <bsd.port.mk> .include <bsd.port.mk>