blob: 5af6e11627cf8e1c169131634c1221820079fd46 (
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
32
|
--- old/src/inn-2.4.5/site/Makefile 2008-06-29 19:56:57.000000000 +0200
+++ new/src/inn-2.4.5/site/Makefile 2008-10-09 19:27:59.613208825 +0200
@@ -52,7 +52,6 @@
PATH_ACTIVE = ${PATHDB}/active
PATH_ACTIVE_TIMES = ${PATHDB}/active.times
-PATH_HISTORY = ${PATHDB}/history
PATH_NEWSGROUPS = ${PATHDB}/newsgroups
## Scripts from above, plus site-specific config files.
@@ -98,7 +97,7 @@
ALL_INSTALLED = $(MOST_INSTALLED) $(REST_INSTALLED)
SPECIAL = $D$(PATH_ACTIVE) $D$(PATH_ACTIVE_TIMES) \
- $D$(PATH_NEWSGROUPS) $D$(PATH_HISTORY)
+ $D$(PATH_NEWSGROUPS)
## Get new versions of everything from samples directory.
all: $(ALL) config
@@ -143,12 +142,6 @@
chown $(RUNASUSER) $@
chgrp $(RUNASGROUP) $@
chmod $(FILEMODE) $@
-$D$(PATH_HISTORY):
- touch $@
- chown $(RUNASUSER) $@
- chgrp $(RUNASGROUP) $@
- chmod $(FILEMODE) $@
- test -z "$D" && $(PATHBIN)/makedbz -i -o
bootstrap:
|