diff options
Diffstat (limited to 'recipes/mdadm/mdadm-1.12.0')
-rw-r--r-- | recipes/mdadm/mdadm-1.12.0/build_flags.patch | 19 | ||||
-rw-r--r-- | recipes/mdadm/mdadm-1.12.0/install.patch | 17 |
2 files changed, 36 insertions, 0 deletions
diff --git a/recipes/mdadm/mdadm-1.12.0/build_flags.patch b/recipes/mdadm/mdadm-1.12.0/build_flags.patch new file mode 100644 index 0000000000..38e1051d6f --- /dev/null +++ b/recipes/mdadm/mdadm-1.12.0/build_flags.patch @@ -0,0 +1,19 @@ +--- mdadm-1.12.0/Makefile 2005-08-22 17:30:21.000000000 -0700 ++++ mdadm-1.12.0/Makefile~ 2005-08-22 17:30:14.000000000 -0700 +@@ -37,13 +37,13 @@ + + KLIBC_GCC = gcc -nostdinc -iwithprefix include -I$(KLIBC)/klibc/include -I$(KLIBC)/linux/include -I$(KLIBC)/klibc/arch/i386/include -I$(KLIBC)/klibc/include/bits32 + +-CC = gcc +-CXFLAGS = -ggdb ++CC := $(CC) ++CXFLAGS = + CWFLAGS = -Wall -Werror -Wstrict-prototypes + SYSCONFDIR = /etc + CONFFILE = $(SYSCONFDIR)/mdadm.conf + MAILCMD =/usr/sbin/sendmail -t +-CFLAGS = $(CWFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\" ++CFLAGS := $(CFLAGS) $(TARGET_CFLAGS) $(CWFLAGS) -DCONFFILE=\"$(CONFFILE)\" $(CXFLAGS) -DSendmail=\""$(MAILCMD)"\" + + # If you want a static binary, you might uncomment these + # LDFLAGS = -static diff --git a/recipes/mdadm/mdadm-1.12.0/install.patch b/recipes/mdadm/mdadm-1.12.0/install.patch new file mode 100644 index 0000000000..e778f9a3b9 --- /dev/null +++ b/recipes/mdadm/mdadm-1.12.0/install.patch @@ -0,0 +1,17 @@ +--- mdadm-1.12.0/Makefile 2005-08-22 16:53:26.000000000 -0700 ++++ mdadm-1.12.0/Makefile~ 2005-08-22 16:53:04.000000000 -0700 +@@ -119,10 +119,10 @@ + $(OBJS) : mdadm.h + + install : mdadm mdadm.8 md.4 mdadm.conf.5 +- $(INSTALL) -D $(STRIP) -m 755 mdadm $(DESTDIR)$(BINDIR)/mdadm +- $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR)/mdadm.8 +- $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR)/md.4 +- $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR)/mdadm.conf.5 ++ $(INSTALL) -D -s -m 755 mdadm $(DESTDIR)$(BINDIR) ++ $(INSTALL) -D -m 644 mdadm.8 $(DESTDIR)$(MAN8DIR) ++ $(INSTALL) -D -m 644 md.4 $(DESTDIR)$(MAN4DIR) ++ $(INSTALL) -D -m 644 mdadm.conf.5 $(DESTDIR)$(MAN5DIR) + + clean : + rm -f mdadm $(OBJS) core *.man mdadm.tcc mdadm.uclibc mdadm.static *.orig *.porig *.rej *.alt \ |