diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2009-01-19 20:23:20 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2009-01-19 20:23:20 +0000 |
commit | d676b950fb3372df392b989435c72e444b6d621f (patch) | |
tree | b0d299fe893268a1d302be0646b0fd99e5aba1b8 /app/cwm | |
parent | 3eb43c704aa562710f362edc5ccc14359eb14176 (diff) |
library dependency ordering matters for static archs, -lXext last in this case
from matthieu@, verified on vax
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 09489ee89..3ac25189e 100644 --- a/app/cwm/Makefile +++ b/app/cwm/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2009/01/11 21:48:27 oga Exp $ +# $OpenBSD: Makefile,v 1.15 2009/01/19 20:23:19 todd Exp $ .include <bsd.xconf.mk> @@ -12,8 +12,8 @@ CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR} CFLAGS+= -Wall -LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp -lXext \ - -lfontconfig -lexpat -lfreetype -lz -lXinerama -lXrandr +LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lXau -lXdmcp \ + -lfontconfig -lexpat -lfreetype -lz -lXinerama -lXrandr -lXext MANDIR= ${X11BASE}/man/cat MAN= cwm.1 cwmrc.5 |