diff options
author | 2006-07-30 19:11:29 +0000 | |
---|---|---|
committer | 2006-07-30 19:11:29 +0000 | |
commit | 8a7c060f7d2f991b68ec606dd82ba6c95c09a2ad (patch) | |
tree | 84cd240c1e3740f1e5cab5ae8cc8a633d3da4283 /sys-fs/yaffs2-utils/files | |
parent | Add patch to fix redirects on embedded plugins, see KDE BUG #121964. (diff) | |
download | gentoo-2-8a7c060f7d2f991b68ec606dd82ba6c95c09a2ad.tar.gz gentoo-2-8a7c060f7d2f991b68ec606dd82ba6c95c09a2ad.tar.bz2 gentoo-2-8a7c060f7d2f991b68ec606dd82ba6c95c09a2ad.zip |
initial import
(Portage version: 2.1.1_pre3-r1)
Diffstat (limited to 'sys-fs/yaffs2-utils/files')
-rw-r--r-- | sys-fs/yaffs2-utils/files/digest-yaffs2-utils-9999 | 1 | ||||
-rw-r--r-- | sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/sys-fs/yaffs2-utils/files/digest-yaffs2-utils-9999 b/sys-fs/yaffs2-utils/files/digest-yaffs2-utils-9999 new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/sys-fs/yaffs2-utils/files/digest-yaffs2-utils-9999 @@ -0,0 +1 @@ + diff --git a/sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch b/sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch new file mode 100644 index 000000000000..851df7ebaf74 --- /dev/null +++ b/sys-fs/yaffs2-utils/files/yaffs2-utils-9999-build.patch @@ -0,0 +1,37 @@ +Index: Makefile +=================================================================== +RCS file: /home/aleph1/cvs/yaffs2/utils/Makefile,v +retrieving revision 1.2 +diff -u -p -r1.2 Makefile +--- Makefile 6 Dec 2005 02:43:01 -0000 1.2 ++++ Makefile 30 Jul 2006 18:45:07 -0000 +@@ -16,15 +16,13 @@ + + #KERNELDIR = /usr/src/kernel-headers-2.4.18 + +-CFLAGS = -I/usr/include -I.. -O2 -Wall -DCONFIG_YAFFS_UTIL ++CFLAGS+= -I.. -Wall -DCONFIG_YAFFS_UTIL + CFLAGS+= -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations + CFLAGS+= -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline + + ## Change if you are using a cross-compiler + MAKETOOLS = + +-CC=$(MAKETOOLS)gcc +- + COMMONLINKS = yaffs_ecc.c + COMMONOBJS = $(COMMONLINKS:.c=.o) + +@@ -44,10 +42,10 @@ $(COMMONOBJS) $(MKYAFFSIMAGEOBJS) $(MKYA + $(CC) -c $(CFLAGS) $< -o $@ + + mkyaffsimage: $(COMMONOBJS) $(MKYAFFSIMAGEOBJS) +- $(CC) -o $@ $(COMMONOBJS) $(MKYAFFSIMAGEOBJS) ++ $(CC) $(CFLAGS) -o $@ $(COMMONOBJS) $(MKYAFFSIMAGEOBJS) $(LDFLAGS) + + mkyaffs2image: $(COMMONOBJS) $(MKYAFFS2IMAGEOBJS) +- $(CC) -o $@ $(COMMONOBJS) $(MKYAFFS2IMAGEOBJS) ++ $(CC) $(CFLAGS) -o $@ $(COMMONOBJS) $(MKYAFFS2IMAGEOBJS) $(LDFLAGS) + + + clean: |