diff options
author | marino <marino@FreeBSD.org> | 2013-07-25 23:06:52 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-07-25 23:06:52 +0800 |
commit | 775733c4b1b5af72ff9994cb90367b7f860183bb (patch) | |
tree | 406b82149efb1d1954f510999c9182c820437672 /audio | |
parent | 3cfaefb0d9c3f307ab7089f7c617bb305746f529 (diff) | |
download | freebsd-ports-gnome-775733c4b1b5af72ff9994cb90367b7f860183bb.tar.gz freebsd-ports-gnome-775733c4b1b5af72ff9994cb90367b7f860183bb.tar.zst freebsd-ports-gnome-775733c4b1b5af72ff9994cb90367b7f860183bb.zip |
audio/nekobee: directly link libraries
Fixes indirect linking errors on modern binutils (fix from dports)
Also remove redundant MAKE_JOBS_SAFE while we are here.
Approved by: bapt (mentor)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/nekobee/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/nekobee/Makefile b/audio/nekobee/Makefile index c56c5d126c27..ec2256282baf 100644 --- a/audio/nekobee/Makefile +++ b/audio/nekobee/Makefile @@ -22,7 +22,6 @@ GH_ACCOUNT= gordonjcp GH_COMMIT= 3f4737f USE_GNOME= gtk20 -MAKE_JOBS_SAFE= yes CPPFLAGS+= -I${LOCALBASE}/include/dssi -I${LOCALBASE}/include @@ -32,6 +31,7 @@ MAKE_JOBS_ARGS= -j${MAKE_JOBS_NUMBER} do-configure: @(cd ${WRKSRC} && ${SETENV} CC="${CC}" CFLAGS="${CFLAGS}" \ + LINKFLAGS="-lm" \ CPPFLAGS="${CPPFLAGS}" ./waf configure --prefix=${PREFIX}) do-build: |