diff options
author | Stefan Walter <stefan@FreeBSD.org> | 2006-11-26 11:39:31 +0000 |
---|---|---|
committer | Stefan Walter <stefan@FreeBSD.org> | 2006-11-26 11:39:31 +0000 |
commit | 8d86dc65a16c1ebae4e326cd98ba3fc89cd613e2 (patch) | |
tree | 431050bb0e08af0acfd2524264e425b6f3b11c04 | |
parent | Update to 4.3.p8. (diff) |
Make it xorg-7 compliant.
PR: 105838
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=178055
-rw-r--r-- | x11/9menu/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/9menu/Makefile b/x11/9menu/Makefile index d7484bc4fd49..fade6b153f12 100644 --- a/x11/9menu/Makefile +++ b/x11/9menu/Makefile @@ -22,11 +22,14 @@ EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= |sh MAKEFILE= Makefile.noimake ALL_TARGET= 9menu -MAKE_ARGS= CC="${CC}" NO_WRKSUBDIR= yes MAN1= 9menu.1 MANCOMPRESSED= yes +do-build: + cd ${WRKSRC} && \ + ${CC} ${CFLAGS} -I${X11BASE}/include -L${X11BASE}/lib -lX11 -o 9menu 9menu.c + .include <bsd.port.mk> |