diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-28 13:43:47 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2006-11-28 13:43:47 +0000 |
commit | 8e883583056ba33a26c2c326a9a1fd832404178a (patch) | |
tree | ed4e3f4936d46bed8f2d24346dd980bccd4bfb23 | |
parent | c7c6e5ca0f2df2f71f4928bd27ac6e78069e1a04 (diff) |
Define BINDIR conditionnally. Mimics what bsd.prog.mk does.
-rw-r--r-- | share/mk/bsd.xorg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.xorg.mk b/share/mk/bsd.xorg.mk index 4269a8564..cdfb208e3 100644 --- a/share/mk/bsd.xorg.mk +++ b/share/mk/bsd.xorg.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xorg.mk,v 1.5 2006/11/27 12:03:10 matthieu Exp $ -*- makefile -*- +# $OpenBSD: bsd.xorg.mk,v 1.6 2006/11/28 13:43:46 matthieu Exp $ -*- makefile -*- # # Copyright © 2006 Matthieu Herrb # @@ -33,7 +33,7 @@ XENOCARA_TOP?= /usr/xenocara # Where to install X11BASE?= /usr/X11R6 -BINDIR= ${X11BASE}/bin +BINDIR?= ${X11BASE}/bin LIBDIR= ${X11BASE}/lib INCSDIR= ${X11BASE}/include MANDIR= ${X11BASE}/man/cat |