diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2017-06-23 13:36:44 +0800 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2017-06-28 10:29:36 -0400 |
commit | 4267eede662006f54694d6062ceea98835b99dd6 (patch) | |
tree | 6f5b0091428d1d86519b5653afbc876f58922c66 /meta-networking/recipes-connectivity/rdist/rdist-6.1.5/rdist-6.1.5-makefile-add-ldflags.patch | |
parent | 7d5f8acc42305040d5387f3773e1f78d01c6ec01 (diff) | |
download | meta-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.patch | 23 |
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 @@ | |||
1 | Add LDFLAGS variable to Makefile so that extra linker flags can be sent via this variable. | ||
2 | |||
3 | Upstream-Status: Inappropriate [no upstream] | ||
4 | |||
5 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> | ||
6 | |||
7 | diff --git a/src/Makefile.real b/src/Makefile.real | ||
8 | index 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 | |||