NeilBrown: Fix compile error on non-x86 systems.
    Martin F. Krafft 
    madduck at alioth.debian.org
       
    Sun Sep  5 06:05:12 UTC 2010
    
    
  
Module: mdadm
Branch: upstream
Commit: 8efb9d16ac4026ca237a2d887240543b1763b634
URL:    http://git.debian.org/?p=pkg-mdadm/mdadm.git;a=commit;h=8efb9d16ac4026ca237a2d887240543b1763b634
Author: NeilBrown <neilb at suse.de>
Date:   Fri Sep  3 13:33:29 2010 +1000
Fix compile error on non-x86 systems.
-z is not an option for 'gcc', it is an option for the loader!!
Reported-by: Debian build system
Signed-off-by: NeilBrown <neilb at suse.de>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index e2c65a5..0cc9a87 100644
--- a/Makefile
+++ b/Makefile
@@ -167,7 +167,7 @@ mdmon.O2 : $(MON_SRCS) mdadm.h mdmon.h
 
 # use '-z now' to guarantee no dynamic linker interactions with the monitor thread
 mdmon : $(MON_OBJS)
-	$(CC) $(LDFLAGS) $(MON_LDFLAGS) -z now -o mdmon $(MON_OBJS) $(LDLIBS)
+	$(CC) $(LDFLAGS) $(MON_LDFLAGS) -Wl,-z,now -o mdmon $(MON_OBJS) $(LDLIBS)
 msg.o: msg.c msg.h
 
 test_stripe : restripe.c mdadm.h
    
    
More information about the pkg-mdadm-commits
mailing list