diff options
author | vsevolod <vsevolod@FreeBSD.org> | 2011-03-25 22:43:05 +0800 |
---|---|---|
committer | vsevolod <vsevolod@FreeBSD.org> | 2011-03-25 22:43:05 +0800 |
commit | 5bb268a74977cc71c76b4aebe49c39dc115e4e71 (patch) | |
tree | 7a7e865064cc93ba9b0efaa584bb7083671c6682 /audio | |
parent | 2feed064cd650f3eb5248678bed165996a564ff4 (diff) | |
download | freebsd-ports-gnome-5bb268a74977cc71c76b4aebe49c39dc115e4e71.tar.gz freebsd-ports-gnome-5bb268a74977cc71c76b4aebe49c39dc115e4e71.tar.zst freebsd-ports-gnome-5bb268a74977cc71c76b4aebe49c39dc115e4e71.zip |
Fix plist issue with removing unnecessary directory.
Improve CPPFLAGS passing to CONFIGURE_ENV.
Submitted by: maintainer via private email
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libmp3splt/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/audio/libmp3splt/Makefile b/audio/libmp3splt/Makefile index 43d0f2d4d56a..49fb5c247f7a 100644 --- a/audio/libmp3splt/Makefile +++ b/audio/libmp3splt/Makefile @@ -75,12 +75,12 @@ USE_GETTEXT= yes LANGUAGES= de_DE es fr_FR .for language in ${LANGUAGES} PLIST_FILES+= share/locale/${language}/LC_MESSAGES/libmp3splt.mo -PLIST_FILES+= "@dirrmtry share/locale/${language}/LC_MESSAGES" -PLIST_FILES+= "@dirrmtry share/locale/${language}" .endfor +PLIST_FILES+= "@dirrmtry share/locale/de_DE/LC_MESSAGES" +PLIST_FILES+= "@dirrmtry share/locale/de_DE" .endif -CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \ - CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" +CPPFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ENV+= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" .include <bsd.port.post.mk> |