summaryrefslogtreecommitdiff
path: root/print/cups/patches/patch-af
blob: 19412cf4d8a4a40a7c09311a860a2f6227cdd4ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
$NetBSD: patch-af,v 1.1.1.1 1999/11/29 02:18:54 jlam Exp $

--- conf/Makefile.orig	Fri Jul 30 10:18:35 1999
+++ conf/Makefile	Sun Nov 28 21:06:28 1999
@@ -48,19 +48,19 @@
 #
 
 install:
-	-$(MKDIR) $(SERVERROOT)/conf
+	-$(MKDIR) $(CONFDIR)
 	for file in $(KEEP); do \
-		if test -e $(SERVERROOT)/conf/$$file ; then \
-			$(CP) $$file $(SERVERROOT)/conf/$$file.N ; \
+		if test -e $(CONFDIR)/$$file ; then \
+			$(CP) $$file $(CONFDIR)/$$file.N ; \
 		else \
-			$(CP) $$file $(SERVERROOT)/conf ; \
+			$(CP) $$file $(CONFDIR) ; \
 		fi ; \
 	done
 	for file in $(REPLACE); do \
-		if test -e $(SERVERROOT)/conf/$$file ; then \
-			$(MV) $(SERVERROOT)/conf/$$file $(SERVERROOT)/conf/$$file.O ; \
+		if test -e $(CONFDIR)/$$file ; then \
+			$(MV) $(CONFDIR)/$$file $(CONFDIR)/$$file.O ; \
 		fi ; \
-		$(CP) $$file $(SERVERROOT)/conf ; \
+		$(CP) $$file $(CONFDIR) ; \
 	done
 
 #