diff options
author | Saul Wold <Saul.Wold@intel.com> | 2010-08-31 14:55:34 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-02 09:50:49 +0100 |
commit | ff9f1021c854b9752dd962595c113253475b8e65 (patch) | |
tree | 8e15ad8eb24fb759f9da7b73d23be36a2934e68e /meta/recipes-extended/mdadm/files | |
parent | 118c36466cd786823d2b8e4968b79a6597b2649b (diff) | |
download | poky-ff9f1021c854b9752dd962595c113253475b8e65.tar.gz |
mdadm: add patch to fix passing linker options to cc
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta/recipes-extended/mdadm/files')
-rw-r--r-- | meta/recipes-extended/mdadm/files/fix-z-now.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-extended/mdadm/files/fix-z-now.patch b/meta/recipes-extended/mdadm/files/fix-z-now.patch new file mode 100644 index 0000000000..3cd606b528 --- /dev/null +++ b/meta/recipes-extended/mdadm/files/fix-z-now.patch | |||
@@ -0,0 +1,15 @@ | |||
1 | Fix -z now is really a LD option, not a gcc option so use -Wl to pass it to LD | ||
2 | |||
3 | Created-by: Saul Wold <saul.wold@intel.com> | ||
4 | |||
5 | --- Makefile.orig 2010-08-31 13:52:46.277764099 -0700 | ||
6 | +++ Makefile 2010-08-31 14:02:28.218014078 -0700 | ||
7 | @@ -167,7 +167,7 @@ | ||
8 | |||
9 | # use '-z now' to guarantee no dynamic linker interactions with the monitor thread | ||
10 | mdmon : $(MON_OBJS) | ||
11 | - $(CC) $(LDFLAGS) $(MON_LDFLAGS) -z now -o mdmon $(MON_OBJS) $(LDLIBS) | ||
12 | + $(CC) $(LDFLAGS) $(MON_LDFLAGS) -Wl,-z,now -o mdmon $(MON_OBJS) $(LDLIBS) | ||
13 | msg.o: msg.c msg.h | ||
14 | |||
15 | test_stripe : restripe.c mdadm.h | ||