commit 8b90f09e6b60001662761a66e78cec95d3a4b5b3 from: Stefan Sperling date: Mon Mar 12 14:30:36 2018 UTC fix make install target if user name != group name commit - f42b1b34c16cc8e0a3fee2d2c66977e02a6f7ab6 commit + 8b90f09e6b60001662761a66e78cec95d3a4b5b3 blob - da5fa39bb9502962e38213e0b1efb96e8adf7153 blob + 1336114cb5e36a5ac7b41ce49c8492b9894258ca --- got/Makefile +++ got/Makefile @@ -11,8 +11,9 @@ DEBUG = -O0 -g CFLAGS += -Werror -Wall -Wstrict-prototypes -Wunused-variable # For now, default to installing binary in ~/bin +GROUP!=id -g -n install: - ${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${USER} \ + ${INSTALL} ${INSTALL_COPY} -o ${USER} -g ${GROUP} \ -m ${BINMODE} ${PROG} ${HOME}/bin/${PROG} # Don't install man pages yet