blob: 56f440f2e841f241a7772f655a8c7d0c989b0db7 (
plain) (
blame)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
--- doc/Makefile.in.orig Sat Nov 25 01:44:57 2000
+++ doc/Makefile.in Sat Jan 6 19:00:35 2001
@@ -67,46 +67,57 @@
$(MKDIR) $(DESTDIR)$(mandir)/man3
$(INSTALL_DATA) $(srcdir)/tar_open.3 $(DESTDIR)$(mandir)/man3
for i in $(TAR_OPEN_SO); do \
- echo ".so man3/tar_open.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
- done
+ $(LN_S) $(DESTDIR)$(mandir)/man3/tar_open.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ done
$(INSTALL_DATA) $(srcdir)/tar_append_file.3 $(DESTDIR)$(mandir)/man3
for i in $(TAR_APPEND_FILE_SO); do \
- echo ".so man3/tar_append_file.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/tar_append_file.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) $(srcdir)/tar_block_read.3 $(DESTDIR)$(mandir)/man3
for i in $(TAR_BLOCK_READ_SO); do \
- echo ".so man3/tar_block_read.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/tar_block_read.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) $(srcdir)/th_read.3 $(DESTDIR)$(mandir)/man3
for i in $(TH_READ_SO); do \
- echo ".so man3/th_read.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/th_read.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) $(srcdir)/th_set_from_stat.3 $(DESTDIR)$(mandir)/man3
for i in $(TH_SET_FROM_STAT_SO); do \
- echo ".so man3/th_set_from_stat.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/th_set_from_stat.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) $(srcdir)/tar_extract_file.3 $(DESTDIR)$(mandir)/man3
for i in $(TAR_EXTRACT_FILE_SO); do \
- echo ".so man3/tar_extract_file.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/tar_extract_file.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) $(srcdir)/th_get_pathname.3 $(DESTDIR)$(mandir)/man3
for i in $(TH_GET_PATHNAME_SO); do \
- echo ".so man3/th_get_pathname.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/th_get_pathname.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) $(srcdir)/th_print_long_ls.3 $(DESTDIR)$(mandir)/man3
for i in $(TH_PRINT_LONG_LS_SO); do \
- echo ".so man3/th_print_long_ls.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/th_print_long_ls.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) $(srcdir)/tar_extract_all.3 $(DESTDIR)$(mandir)/man3
for i in $(TAR_EXTRACT_ALL_SO); do \
- echo ".so man3/tar_extract_all.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/tar_extract_all.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) @LHPKG@_hash_new.3 $(DESTDIR)$(mandir)/man3
for i in $(@LHPKG@_HASH_NEW_SO); do \
- echo ".so man3/@LHPKG@_hash_new.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/@LHPKG@_hash_new.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
$(INSTALL_DATA) @LHPKG@_list_new.3 $(DESTDIR)$(mandir)/man3
for i in $(@LHPKG@_LIST_NEW_SO); do \
- echo ".so man3/@LHPKG@_list_new.3" > $(DESTDIR)$(mandir)/man3/$${i}.3; \
+ $(LN_S) $(DESTDIR)$(mandir)/man3/@LHPKG@_list_new.3 \
+ $(DESTDIR)$(mandir)/man3/$${i}.3; \
done
|