From kde-core-devel Wed Oct 10 08:13:08 2001 From: Alex Zepeda Date: Wed, 10 Oct 2001 08:13:08 +0000 To: kde-core-devel Subject: appropiate chown syntax versus kdesud X-MARC-Message: https://marc.info/?l=kde-core-devel&m=100270167032267 Uh. Yeah. Does a colon work for other chown's out there? As it stands -current (and possibly later releases of -stable) don't support user.group formats, instead they require user:group (since . is technically valid in a username). I'm thinking this diff would be appropiate: Index: Makefile.am =================================================================== RCS file: /home/kde/kdebase/kdesu/kdesud/Makefile.am,v retrieving revision 1.14 diff -b -d -u -1 -r1.14 Makefile.am --- Makefile.am 2001/02/25 18:51:00 1.14 +++ Makefile.am 2001/10/10 08:12:59 @@ -23,3 +23,3 @@ install-exec-local: install-binPROGRAMS - @(chown root.@nogroup@ $(DESTDIR)$(bindir)/kdesud && chmod 2755 $(DESTDIR)$(bindir)/kdesud) \ + @(chown root:@nogroup@ $(DESTDIR)$(bindir)/kdesud && chmod 2755 $(DESTDIR)$(bindir)/kdesud) \ || echo "Error: Could not install kdesud as setgid nogroup!!\n" \ - alex