summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2010-04-21 21:22:06 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2010-04-21 21:22:06 +0000
commit8e67b07489644c822df054d0a09b1b0d08b9bf22 (patch)
tree2fe38f0eb7b48a733a4864a70242f1fb240efe70 /Makefile
parent0ed80637e77a5f6d483f64b095cc8f92b09ba0a7 (diff)
Don't set user and group with install, from Nicolas Pinto.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5f24da08..ba36e2fc 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.156 2010-03-10 15:44:13 tcunha Exp $
+# $Id: Makefile,v 1.157 2010-04-21 21:22:06 nicm Exp $
#
# Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
#
@@ -49,8 +49,8 @@ CFLAGS+= -Wno-pointer-sign
PREFIX?= /usr/local
INSTALLDIR= install -d
-INSTALLBIN= install -g bin -o root -m 555
-INSTALLMAN= install -g bin -o root -m 444
+INSTALLBIN= install -m 555
+INSTALLMAN= install -m 444
SRCS!= echo *.c|sed 's|osdep-[a-z0-9]*.c||g'
.include "config.mk"