diff options
author | ru <ru@FreeBSD.org> | 2001-09-13 07:20:51 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-09-13 07:20:51 +0000 |
commit | 214349ee3a8fd079e8ada36c86698d61a7706aa5 (patch) | |
tree | c43732c6e74c15ec7edebf6cff01a713bb8ebd75 /usr.bin/doscmd/Makefile | |
parent | a6a2e0a9915212975e58abaca162561a52d00571 (diff) | |
download | FreeBSD-src-214349ee3a8fd079e8ada36c86698d61a7706aa5.zip FreeBSD-src-214349ee3a8fd079e8ada36c86698d61a7706aa5.tar.gz |
Fixed the BINGRP handling mess.
EXEGRP and EXEMODE are used to install DOS (EXE format) binaries.
doscmd(1) can optionally be installed as ``setgid kmem''.
Hence the assignment operator for EXEGRP.
PR: bin/30538
Diffstat (limited to 'usr.bin/doscmd/Makefile')
-rw-r--r-- | usr.bin/doscmd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/doscmd/Makefile b/usr.bin/doscmd/Makefile index 37e90bc..72ad5bc 100644 --- a/usr.bin/doscmd/Makefile +++ b/usr.bin/doscmd/Makefile @@ -23,10 +23,10 @@ DPADD= ${LIBGCC} ${LIBC} XLIBDIR= ${DESTDIR}${X11BASE}/lib .endif -BINGRP= kmem -EXEGRP= bin +EXEGRP:= ${BINGRP} +EXEMODE= ${NOBINMODE} +#BINGRP= kmem #BINMODE= 2555 -EXEMODE= 444 .if !defined(NO_X) && exists(${XINCDIR}/X11/X.h) && exists(${XLIBDIR}/libX11.a) CFLAGS+= -I${XINCDIR} |