Fix gdm themes installation. Our chown(8) doesn't likes . as

user/group separator.

PR:		65460
Submitted by:	ceri
This commit is contained in:
Alexander Nedotsukov 2004-04-12 15:49:51 +00:00
parent 8cd50885e3
commit 27f77699fc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=106815
2 changed files with 12 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= gdm2
PORTVERSION= 2.6.0.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/2.6

View File

@ -0,0 +1,11 @@
--- gui/gdmsetup.c.orig Mon Apr 12 14:24:57 2004
+++ gui/gdmsetup.c Mon Apr 12 14:25:00 2004
@@ -1962,7 +1962,7 @@
success = TRUE;
/* HACK! */
- cmd = g_strdup_printf ("%s -R root.root %s", chown, quoted);
+ cmd = g_strdup_printf ("%s -R root:wheel %s", chown, quoted);
system (cmd);
g_free (cmd);