summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/002-destdir.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/002-destdir.patch')
-rw-r--r--meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/002-destdir.patch73
1 files changed, 0 insertions, 73 deletions
diff --git a/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/002-destdir.patch b/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/002-destdir.patch
deleted file mode 100644
index df290f2277..0000000000
--- a/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/002-destdir.patch
+++ /dev/null
@@ -1,73 +0,0 @@
1Upstream-Status: Inappropriate [other]
2Upstream is not making further releases of this software.
3
4Signed-off-by: Scott Garman <scott.a.garman@intel.com>
5
6# Patch origin: nfs-server source RPM from openSUSE 10.3
7
8--- nfs-server/Makefile.in 2002/11/07 16:56:07 1.1
9+++ nfs-server/Makefile.in 2002/11/07 17:08:41
10@@ -74,10 +74,10 @@
11
12 bindir = $(exec_prefix)/sbin
13 #vardir = $(install_prefix)/var/lib/nfs
14-infodir = $(prefix)/info
15-man5dir = $(prefix)/man/man5
16+infodir = $(prefix)/share/info
17+man5dir = $(prefix)/share/man/man5
18 man5ext = .5
19-man8dir = $(prefix)/man/man8
20+man8dir = $(prefix)/share/man/man8
21 man8ext = .8
22
23 # Prefix to be prepended to each installed RPC program, normally `rpc.'.
24@@ -145,37 +145,37 @@
25 .PHONY: install installdirs
26 install: $(DAEMONS) $(CLIENTS) installdirs
27 @for prog in $(DAEMONS) $(CLIENTS); do \
28- echo "installing $$prog in $(bindir)"; \
29- $(INSTALL_PROGRAM) $$prog $(bindir)/$$prog; \
30+ echo "installing $$prog in $(DESTDIR)$(bindir)"; \
31+ $(INSTALL_PROGRAM) $$prog $(DESTDIR)$(bindir)/$$prog; \
32 done
33 @for manp in $(MANPAGES5); do \
34- echo "installing $$manp$(man5ext) in $(man5dir)"; \
35+ echo "installing $$manp$(man5ext) in $(DESTDIR)$(man5dir)"; \
36 $(INSTALL_DATA) $(srcdir)/$$manp.man \
37- $(man5dir)/$$manp$(man5ext); \
38+ $(DESTDIR)$(man5dir)/$$manp$(man5ext); \
39 done
40 @for manp in $(MANPAGES8p); do \
41- echo "installing $$manp$(man8ext) in $(man8dir)"; \
42+ echo "installing $$manp$(man8ext) in $(DESTDIR)$(man8dir)"; \
43 $(INSTALL_DATA) $(srcdir)/$$manp.man \
44- $(man8dir)/$$manp$(man8ext); \
45+ $(DESTDIR)$(man8dir)/$$manp$(man8ext); \
46 if [ 'x$(rpcprefix)' != 'x' ]; then \
47 rm -f $(man8dir)/$(rpcprefix)$$manp$(man8ext); \
48 ln -s $$manp$(man8ext) \
49- $(man8dir)/$(rpcprefix)$$manp$(man8ext); \
50+ $(DESTDIR)$(man8dir)/$(rpcprefix)$$manp$(man8ext); \
51 fi; \
52 done
53 @for manp in $(MANPAGES8); do \
54- echo "installing $$manp$(man8ext) in $(man8dir)"; \
55+ echo "installing $$manp$(man8ext) in $(DESTDIR)$(man8dir)"; \
56 $(INSTALL_DATA) $(srcdir)/$$manp.man \
57- $(man8dir)/$$manp$(man8ext); \
58+ $(DESTDIR)$(man8dir)/$$manp$(man8ext); \
59 done
60 @if [ -n "$(DEVTAB_FILE)" -a ! -f "$(DEVTAB_FILE)" ]; then \
61 echo "Initializing $(DEVTAB_FILE)"; \
62- $(INSTALL) -m 755 -d `dirname $(DEVTAB_FILE)`; \
63- echo "# Device mapping for unfsd" > "$(DEVTAB_FILE)"; \
64+ $(INSTALL) -m 755 -d `dirname $(DESTDIR)$(DEVTAB_FILE)`; \
65+ echo "# Device mapping for unfsd" > $(DESTDIR)"$(DEVTAB_FILE)"; \
66 fi
67
68 installdirs:
69- ${srcdir}/mkinstalldirs $(bindir) $(man5dir) $(man8dir)
70+ ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(man5dir) $(DESTDIR)$(man8dir)
71
72 $(rpcprefix)mountd: $(MOUNTD_OBJS) libnfs.a
73 $(CC) $(LDFLAGS) -o $@ $(MOUNTD_OBJS) $(LIBS)