diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-26 14:07:28 +0800 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-07-26 14:07:28 +0800 |
commit | 119dc743db62a7d292586ef6777d08f86d6a8d5a (patch) | |
tree | 44db168412b269dd3018792132f1d1ed6ce3cd03 /x11-wm/wmii | |
parent | 556fce1540f3bb0c61c19dde1beec7a031271d31 (diff) | |
download | freebsd-ports-gnome-119dc743db62a7d292586ef6777d08f86d6a8d5a.tar.gz freebsd-ports-gnome-119dc743db62a7d292586ef6777d08f86d6a8d5a.tar.zst freebsd-ports-gnome-119dc743db62a7d292586ef6777d08f86d6a8d5a.zip |
Fix build with linker that does not copy the dt_need from libraries it links
with like recent binutils.
Obtained from: DPorts
Diffstat (limited to 'x11-wm/wmii')
-rw-r--r-- | x11-wm/wmii/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-wm/wmii/Makefile b/x11-wm/wmii/Makefile index 7ce2875d1fba..e0936a506139 100644 --- a/x11-wm/wmii/Makefile +++ b/x11-wm/wmii/Makefile @@ -18,8 +18,8 @@ CONFLICTS= wmii-3.9* USE_XORG= x11 xextproto xt xext MAKE_ARGS= PREFIX="${PREFIX}" INCLUDE="${LOCALBASE}/include" \ - INCX11="-I${LOCALBASE}/include" LIBX11="-L${LOCALBASE}/lib" \ - CC="${CC} -c" LD="${CC}" LIBIXP="-lixp" STATIC="" \ + INCX11="-I${LOCALBASE}/include" LIBX11="-L${LOCALBASE}/lib -lX11 -lixp" \ + CC="${CC} -c" LD="${CC}" LIBIXP="" STATIC="" \ MAN="${MANPREFIX}/man" MAN1= wmii.1 wmiiloop.1 wmiir.1 |