fix typo.
[vuplus_openvuplus] / meta-openvuplus / recipes-base / autofs / autofs-4.1.4 / install.patch
1 Index: autofs-4.1.4/man/Makefile
2 ===================================================================
3 --- autofs-4.1.4.orig/man/Makefile      2003-09-29 10:22:35.000000000 +0200
4 +++ autofs-4.1.4/man/Makefile   2006-06-19 15:09:33.124583912 +0200
5 @@ -14,9 +14,9 @@
6  
7  install: all
8         install -d -m 755 $(INSTALLROOT)$(mandir)/man5
9 -       install -c *.5 -m 644 $(INSTALLROOT)$(mandir)/man5
10 +       install -c -m 644 *.5 $(INSTALLROOT)$(mandir)/man5
11         install -d -m 755 $(INSTALLROOT)$(mandir)/man8
12 -       install -c *.8 -m 644 $(INSTALLROOT)$(mandir)/man8
13 +       install -c -m 644 *.8 $(INSTALLROOT)$(mandir)/man8
14  
15  clean:
16         rm -f $(GENFILES)
17 Index: autofs-4.1.4/modules/Makefile
18 ===================================================================
19 --- autofs-4.1.4.orig/modules/Makefile  2004-08-29 14:46:23.000000000 +0200
20 +++ autofs-4.1.4/modules/Makefile       2006-06-19 15:09:33.125583760 +0200
21 @@ -53,7 +53,7 @@
22  # mount_smbfs.so is an obsolete module which must be removed
23  install: all
24         install -d -m 755 $(INSTALLROOT)$(autofslibdir)
25 -       install -c $(MODS) -m 755 $(INSTALLROOT)$(autofslibdir)
26 +       install -c -m 755 $(MODS) $(INSTALLROOT)$(autofslibdir)
27         -rm -f $(INSTALLROOT)$(autofslibdir)/mount_smbfs.so
28  ifeq ($(EXT2FS), 1)
29   ifeq ($(EXT3FS), 1)
30 Index: autofs-4.1.4/samples/Makefile
31 ===================================================================
32 --- autofs-4.1.4.orig/samples/Makefile  2005-01-04 15:36:54.000000000 +0100
33 +++ autofs-4.1.4/samples/Makefile       2006-06-19 15:09:33.125583760 +0200
34 @@ -27,19 +27,19 @@
35  install: all
36         install -d -m 755 $(INSTALLROOT)/etc
37         -mv -f $(INSTALLROOT)/etc/auto.master $(INSTALLROOT)/etc/auto.master.old
38 -       install -c auto.master -m 644 $(INSTALLROOT)/etc
39 +       install -c -m 644 auto.master $(INSTALLROOT)/etc
40         -mv -f $(INSTALLROOT)/etc/auto.misc $(INSTALLROOT)/etc/auto.misc.old
41 -       install -c auto.misc   -m 644 $(INSTALLROOT)/etc
42 +       install -c -m 644 auto.misc $(INSTALLROOT)/etc
43         -mv -f $(INSTALLROOT)/etc/auto.net $(INSTALLROOT)/etc/auto.net.old
44 -       install -c auto.net    -m 755 $(INSTALLROOT)/etc
45 +       install -c -m 755 auto.net $(INSTALLROOT)/etc
46         -mv -f $(INSTALLROOT)/etc/auto.smb $(INSTALLROOT)/etc/auto.smb.old
47 -       install -c auto.smb    -m 755 $(INSTALLROOT)/etc
48 +       install -c -m 755 auto.smb    $(INSTALLROOT)/etc
49         install -d -m 755 $(INSTALLROOT)$(initdir)
50 -       install -c rc.autofs   -m 755 $(INSTALLROOT)$(initdir)/autofs
51 +       install -c -m 755 rc.autofs   $(INSTALLROOT)$(initdir)/autofs
52         install -d -m 755 $(INSTALLROOT)$(autofslibdir)
53         install -d -m 755 $(INSTALLROOT)/var/run/autofs
54  ifeq ($(LDAP), 1)
55 -       install -c autofs-ldap-auto-master -m 755 $(INSTALLROOT)$(autofslibdir)
56 +       install -c -m 755 autofs-ldap-auto-master $(INSTALLROOT)$(autofslibdir)
57  endif
58  
59  clean):
60 Index: autofs-4.1.4/daemon/Makefile
61 ===================================================================
62 --- autofs-4.1.4.orig/daemon/Makefile   2006-06-19 15:10:47.526273136 +0200
63 +++ autofs-4.1.4/daemon/Makefile        2006-06-19 15:10:58.661580312 +0200
64 @@ -26,6 +26,6 @@
65  
66  install: all
67         install -d -m 755 $(INSTALLROOT)$(sbindir)
68 -       install -c automount -m 755 $(INSTALLROOT)$(sbindir)
69 +       install -c -m 755 automount $(INSTALLROOT)$(sbindir)
70  
71