blob: 5109a5bda3cb5041ae2dbd4986b999b1f8d26a86 (
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
|
diff -rc nmh.orig/uip/Makefile.in nmh/uip/Makefile.in
*** nmh.orig/uip/Makefile.in 2003-10-25 05:17:38.000000000 +0900
--- nmh/uip/Makefile.in 2004-05-26 20:05:11.937450072 +0900
***************
*** 266,277 ****
rm -f $(bindir)/folders
rm -f $(bindir)/prev
rm -f $(bindir)/next
! rm -f $(libdir)/install-mh
$(LN) $(bindir)/flist $(bindir)/flists
$(LN) $(bindir)/folder $(bindir)/folders
$(LN) $(bindir)/show $(bindir)/prev
$(LN) $(bindir)/show $(bindir)/next
! $(LN) $(bindir)/install-mh $(libdir)/install-mh
# install misc support binaries
install-misc:
--- 266,277 ----
rm -f $(bindir)/folders
rm -f $(bindir)/prev
rm -f $(bindir)/next
! if [ "$(libdir)" != "$(bindir)" ]; then rm -f $(libdir)/install-mh; fi
$(LN) $(bindir)/flist $(bindir)/flists
$(LN) $(bindir)/folder $(bindir)/folders
$(LN) $(bindir)/show $(bindir)/prev
$(LN) $(bindir)/show $(bindir)/next
! if [ "$(libdir)" != "$(bindir)" ]; then $(LN) $(bindir)/install-mh $(libdir)/install-mh; fi
# install misc support binaries
install-misc:
|