diff options
author | John Marino <marino@FreeBSD.org> | 2016-10-17 16:38:13 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2016-10-17 16:38:13 +0000 |
commit | c7c7eb12c4ccc89ba94f52a9cf6b339a78b9e411 (patch) | |
tree | a4367d28514c61278c0bc23f1b0b139cb234a281 /audio/gbsplay | |
parent | net/(t|wire)shark-lite: Really fix them (diff) |
audio/gbsplay: Add explicit -L option for NLS LDFLAGS
Some compilers don't have /usr/local/lib in the default library search
path.
Approved by: explicit LDFLAGs blanket
Notes
Notes:
svn path=/head/; revision=424129
Diffstat (limited to 'audio/gbsplay')
-rw-r--r-- | audio/gbsplay/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/gbsplay/Makefile b/audio/gbsplay/Makefile index 950ec01be39f..45e7f2cd1f18 100644 --- a/audio/gbsplay/Makefile +++ b/audio/gbsplay/Makefile @@ -32,7 +32,7 @@ NAS_LIB_DEPENDS= libaudio.so:audio/nas NAS_CONFIGURE_ENABLE= nas NLS_CONFIGURE_OFF= --disable-i18n NLS_USES= gettext -NLS_LDFLAGS= -lintl +NLS_LDFLAGS= -L${LOCALBASE}/lib -lintl .include <bsd.port.options.mk> |