]> git.pld-linux.org Git - packages/bind.git/blob - bind-pmake.patch
- fixed chown syntax
[packages/bind.git] / bind-pmake.patch
1 diff -urN bind-9.2.3.org/lib/bind/make/rules.in bind-9.2.3/lib/bind/make/rules.in
2 --- bind-9.2.3.org/lib/bind/make/rules.in       2003-10-24 23:31:33.000000000 +0200
3 +++ bind-9.2.3/lib/bind/make/rules.in   2003-10-24 23:31:50.000000000 +0200
4 @@ -49,8 +49,10 @@
5  ### Makefile may define:
6  ###    TARGETS
7  
8 -all: subdirs ${TARGETS}
9 +all: touchfile ${TARGETS}
10  
11 +touchfile: subdirs
12 +       touch touchfile
13  ###
14  ### Subdirectories
15  ###
16 diff -urN bind-9.2.3.org/lib/bind/Makefile.in bind-9.2.3/lib/bind/Makefile.in
17 --- bind-9.2.3.org/lib/bind/Makefile.in 2003-10-24 23:31:33.000000000 +0200
18 +++ bind-9.2.3/lib/bind/Makefile.in     2003-10-24 23:31:50.000000000 +0200
19 @@ -94,11 +94,11 @@
20  
21  @BIND9_MAKE_RULES@
22  
23 -libbind.@SA@: ${OBJS}
24 +libbind.@SA@: touchfile
25         ${AR} ${ARFLAGS} $@ ${OBJS}
26         ${RANLIB} $@
27  
28 -libbind.la: ${OBJS}
29 +libbind.la: touchfile
30         ${LIBTOOL} --mode=link \
31         ${CC} ${ALL_CFLAGS} -o libbind.la -rpath ${libdir} \
32                 -version-info ${LIBINTERFACE}:${LIBREVISION}:${LIBAGE} \
33 diff -urN bind-9.2.3.org/lib/dns/Makefile.in bind-9.2.3/lib/dns/Makefile.in
34 --- bind-9.2.3.org/lib/dns/Makefile.in  2003-10-24 23:31:34.000000000 +0200
35 +++ bind-9.2.3/lib/dns/Makefile.in      2003-10-24 23:32:39.000000000 +0200
36 @@ -94,11 +94,11 @@
37                 -DLIBAGE=${LIBAGE} \
38                 -c ${srcdir}/version.c
39  
40 -libdns.@SA@: ${OBJS}
41 +libdns.@SA@: touchfile ${OBJS}
42         ${AR} ${ARFLAGS} $@ ${OBJS}
43         ${RANLIB} $@
44  
45 -libdns.la: ${OBJS}
46 +libdns.la: touchfile ${OBJS}
47         ${LIBTOOL} --mode=link \
48                 ${CC} ${ALL_CFLAGS} -o libdns.la -rpath ${libdir} \
49                 -version-info ${LIBINTERFACE}:${LIBREVISION}:${LIBAGE} \
50 @@ -124,7 +124,7 @@
51                 -version-info ${LIBINTERFACE}:${LIBREVISION}:${LIBAGE} \
52                 ${GSSAPIOBJS} ${LIBS}
53  
54 -timestamp: libdns.@A@
55 +timestamp: include libdns.@A@
56         touch timestamp
57  
58  installdirs:
59 @@ -172,3 +172,6 @@
60         include/dns/rdatastruct.h code.h
61  subdirs: include/dns/enumtype.h include/dns/enumclass.h \
62         include/dns/rdatastruct.h code.h
63 +
64 +$(OBJS): include/dns/enumtype.h include/dns/enumclass.h \
65 +       include/dns/rdatastruct.h code.h
66 diff -urN bind-9.2.3.org/lib/isc/Makefile.in bind-9.2.3/lib/isc/Makefile.in
67 --- bind-9.2.3.org/lib/isc/Makefile.in  2003-10-24 23:31:34.000000000 +0200
68 +++ bind-9.2.3/lib/isc/Makefile.in      2003-10-24 23:31:50.000000000 +0200
69 @@ -88,11 +88,11 @@
70                 -DLIBAGE=${LIBAGE} \
71                 -c ${srcdir}/version.c
72  
73 -libisc.@SA@: ${OBJS}
74 +libisc.@SA@: touchfile ${OBJS}
75         ${AR} ${ARFLAGS} $@ ${OBJS}
76         ${RANLIB} $@
77  
78 -libisc.la: ${OBJS}
79 +libisc.la: touchfile ${OBJS}
80         ${LIBTOOL} --mode=link \
81                 ${CC} ${ALL_CFLAGS} -o libisc.la -rpath ${libdir} \
82                 -version-info ${LIBINTERFACE}:${LIBREVISION}:${LIBAGE} \
83 diff -urN bind-9.2.3.org/make/rules.in bind-9.2.3/make/rules.in
84 --- bind-9.2.3.org/make/rules.in        2003-10-24 23:31:35.000000000 +0200
85 +++ bind-9.2.3/make/rules.in    2003-10-24 23:31:50.000000000 +0200
86 @@ -47,7 +47,10 @@
87  ### Makefile may define:
88  ###    TARGETS
89  
90 -all: subdirs ${TARGETS}
91 +all: touchfile ${TARGETS}
92 +
93 +touchfile: subdirs
94 +       touch touchfile
95  
96  ###
97  ### Subdirectories
This page took 0.053093 seconds and 3 git commands to generate.