diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-06-19 02:21:31 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2008-06-19 02:21:31 +0000 |
commit | b950305a463a76830d9db32362c60405e4760b24 (patch) | |
tree | 935d266d18b05eba3c789647eadc029dc6001765 /app/cwm | |
parent | ffe9e4afb81c67b7a990400bee55b0730d737717 (diff) |
Don't link "-lX11 -lXau -lXdmcp" twice.
From Martin Toft, thanks!
Diffstat (limited to 'app/cwm')
-rw-r--r-- | app/cwm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/Makefile b/app/cwm/Makefile index ba7ef3035..11c62da45 100644 --- a/app/cwm/Makefile +++ b/app/cwm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 2008/06/14 21:48:54 okan Exp $ +# $OpenBSD: Makefile,v 1.9 2008/06/19 02:21:30 oga Exp $ .include <bsd.xconf.mk> @@ -10,8 +10,8 @@ SRCS= calmwm.c screen.c xmalloc.c client.c grab.c menu.c \ CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR} -LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp \ - -lfontconfig -lexpat -lfreetype -lz -lX11 -lXau -lXdmcp -lXext +LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp -lXext \ + -lfontconfig -lexpat -lfreetype -lz MANDIR= ${X11BASE}/man/cat MAN= cwm.1 cwmrc.5 |