summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch
diff options
context:
space:
mode:
authorJackie Huang <jackie.huang@windriver.com>2017-06-23 13:36:44 +0800
committerJoe MacDonald <joe_macdonald@mentor.com>2017-06-28 10:29:36 -0400
commit4267eede662006f54694d6062ceea98835b99dd6 (patch)
tree6f5b0091428d1d86519b5653afbc876f58922c66 /meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch
parent7d5f8acc42305040d5387f3773e1f78d01c6ec01 (diff)
downloadmeta-openembedded-4267eede662006f54694d6062ceea98835b99dd6.tar.gz
rdist: add new recipe
rdist is a remote file distribution client and server. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch')
-rw-r--r--meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch b/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch
new file mode 100644
index 0000000000..cc82e16cc2
--- /dev/null
+++ b/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch
@@ -0,0 +1,23 @@
1Add LDFLAGS variable to Makefile so that extra linker flags can be sent via this variable.
2
3Upstream-Status: Inappropriate [no upstream]
4
5Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
6
7diff --git a/src/Makefile.real b/src/Makefile.real
8index 02179e4..9070974 100644
9--- a/src/Makefile.real
10+++ b/src/Makefile.real
11@@ -36,10 +36,10 @@ all: src
12 src: $(CLIENT_BIN) $(SERVER_BIN)
13
14 $(SERVER_BIN): $(SERVEROBJS) $(COMMONOBJS) $(MISSINGOBJS)
15- $(CC) -o $@ $(SERVEROBJS) $(COMMONOBJS) $(MISSINGOBJS) $(LIBS)
16+ $(CC) -o $@ $(SERVEROBJS) $(COMMONOBJS) $(MISSINGOBJS) $(LIBS) $(LDFLAGS)
17
18 $(CLIENT_BIN): $(CLIENTOBJS) $(COMMONOBJS) $(MISSINGOBJS)
19- $(CC) -o $@ $(CLIENTOBJS) $(COMMONOBJS) $(MISSINGOBJS) $(LIBS)
20+ $(CC) -o $@ $(CLIENTOBJS) $(COMMONOBJS) $(MISSINGOBJS) $(LIBS) $(LDFLAGS)
21
22 $(CLIENTOBJS) $(SERVEROBJS): $(HFILES) y.tab.h
23