Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libcom_err/compile_et Change ${LDFLAGS} to ${HOST_LDFLAG...



details:   https://anonhg.NetBSD.org/src/rev/319449821fdf
branches:  trunk
changeset: 495771:319449821fdf
user:      garbled <garbled%NetBSD.org@localhost>
date:      Sat Aug 05 06:57:21 2000 +0000

description:
Change ${LDFLAGS} to ${HOST_LDFLAGS} because we are using HOST_CC.  Fixes
cross compile bug.

diffstat:

 lib/libcom_err/compile_et/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 354b76a0e373 -r 319449821fdf lib/libcom_err/compile_et/Makefile
--- a/lib/libcom_err/compile_et/Makefile        Sat Aug 05 05:55:27 2000 +0000
+++ b/lib/libcom_err/compile_et/Makefile        Sat Aug 05 06:57:21 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 14:01:32 tron Exp $
+# $NetBSD: Makefile,v 1.5 2000/08/05 06:57:21 garbled Exp $
 DIST=          ${.CURDIR}/../../../crypto/dist
 .PATH: ${DIST}/heimdal/lib/com_err ${DIST}/heimdal/lib/roken
 
@@ -28,7 +28,7 @@
 make-print-version.lo: ${.CURDIR}/../../../include/heimdal/version.h
 
 make-print-version: make-print-version.lo
-       ${HOST_CC} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
+       ${HOST_CC} ${HOST_LDFLAGS} -o ${.TARGET} ${.ALLSRC}
 
 print_version.h: make-print-version
        ./make-print-version print_version.h



Home | Main Index | Thread Index | Old Index