Don't make the files / binaries owned by group games
authorHans de Goede <hdegoede@redhat.com>
Mon, 14 Feb 2011 14:57:34 +0000 (15:57 +0100)
committerHans de Goede <hdegoede@redhat.com>
Mon, 14 Feb 2011 14:57:34 +0000 (15:57 +0100)
There is no need for this and it breaks running make install as a non
root user.

makefile

index bb348d6ae2ab2abeead6747154df3eae116ce6b6..50e77e3f88d41b1801ba3762a4b26505d0f4ee90 100755 (executable)
--- a/makefile
+++ b/makefile
@@ -107,9 +107,8 @@ install:
        mkdir -p $(ICONDIR)64x64/apps
        mkdir -p $(DESKTOPDIR)
 
-       install -o root -g games -m 755 $(PROG) $(BINDIR)$(PROG)
-       install -o root -g games -m 644 $(PAKNAME) $(DATADIR)$(PAKNAME)
-       install -o root -g games -m 644 $(DOCS) $(DOCDIR)
+       install -m 755 $(PROG) $(BINDIR)$(PROG)
+       install -m 644 $(PAKNAME) $(DATADIR)$(PAKNAME)
        cp $(ICONS)$(PROG).png $(ICONDIR)32x32/apps/
        cp $(ICONS)$(PROG)-mini.png $(ICONDIR)16x16/apps/$(PROG).png
        cp $(ICONS)$(PROG)-large.png $(ICONDIR)64x64/apps/$(PROG).png