From 05d539d89ff012e008fd1a624993b8240ec02549 Mon Sep 17 00:00:00 2001 From: Russ Fish <fish@flux.utah.edu> Date: Mon, 14 May 2007 21:47:48 +0000 Subject: [PATCH] chown uid.gid in ops-install target is Linux syntax; doesn't work on FreeBSD. Separate chown and chgrp so it works either way. --- GNUmakefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index 55b9feae28..0b872665b2 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -78,7 +78,8 @@ ops-install: -mkdir -p $(INSTALL_TOPDIR)/log -mkdir -p $(INSTALL_TOPDIR)/log/mysql -chmod 770 $(INSTALL_TOPDIR)/log/mysql - -chown mysql.mysql $(INSTALL_TOPDIR)/log/mysql + -chown mysql $(INSTALL_TOPDIR)/log/mysql + -chgrp mysql $(INSTALL_TOPDIR)/log/mysql @$(MAKE) -C tbsetup control-install @$(MAKE) -C security control-install @$(MAKE) -C tip control-install -- GitLab