diff options
Diffstat (limited to 'www/suphp/files/patch-Makefile')
-rw-r--r-- | www/suphp/files/patch-Makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/www/suphp/files/patch-Makefile b/www/suphp/files/patch-Makefile deleted file mode 100644 index a472d9849926..000000000000 --- a/www/suphp/files/patch-Makefile +++ /dev/null @@ -1,33 +0,0 @@ ---- Makefile.orig Wed Oct 23 22:16:50 2002 -+++ Makefile Tue Nov 12 12:10:58 2002 -@@ -2,9 +2,9 @@ - ## Makefile for suPHP ## - ############################################## - --SUPHP_INSTALL = /usr/sbin/suphp -+SUPHP_INSTALL = $(PREFIX)/sbin/suphp - --CC = gcc -+#CC = gcc - CFLAGS = -c -Wall - LD = gcc - LDFLAGS = -o -@@ -31,11 +31,7 @@ - touch suphp.h - - install: suphp -- if [ $$UID = 0 ]; then \ -- cp suphp ${SUPHP_INSTALL}; \ -- else \ -- echo -e "You need to be root to install suPHP."; \ -- fi -+ $(INSTALL) -o root -g wheel -m 4755 suphp ${SUPHP_INSTALL} - - clean: - rm *.o -@@ -43,3 +39,5 @@ - - rmbackups: - rm *~ -+ -+all: suphp |