diff options
author | lukem <lukem@pkgsrc.org> | 2000-11-04 00:08:49 +0000 |
---|---|---|
committer | lukem <lukem@pkgsrc.org> | 2000-11-04 00:08:49 +0000 |
commit | bdad9c40bd7baa1066472de72e12418baa144eca (patch) | |
tree | 908945dc8a5f3a6fa2c249cff5a94b87a55bf3a6 /emulators | |
parent | 4b0a87601c31490cde6772af58fc692ba2d889b9 (diff) | |
download | pkgsrc-bdad9c40bd7baa1066472de72e12418baa144eca.tar.gz |
if using pkgsrc libintl, need
LIBINTL=-L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib -lintl
not
LIBINTL=-L${LOCALBASE} -lintl
cVS: ----------------------------------------------------------------------
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/suse_base/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/suse_base/Makefile b/emulators/suse_base/Makefile index ecbef895704..1ab0148be78 100644 --- a/emulators/suse_base/Makefile +++ b/emulators/suse_base/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2000/11/01 16:08:02 itojun Exp $ +# $NetBSD: Makefile,v 1.15 2000/11/04 00:08:49 lukem Exp $ DISTNAME= suse_base-6.3 CATEGORIES= emulators @@ -35,7 +35,7 @@ USE_LIBINTL= yes .if exists(/usr/include/libintl.h) LIBINTL= -lintl .else -LIBINTL= -L${LOCALBASE} -lintl +LIBINTL= -L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib -lintl .endif do-build: |