switched to using uclibc SVN snapshots
[kvm-coreboot.git] / packages / ofw / 64bit-fix.patch
bloba2fd7a4bd71439448df1dfe889ccf88404212378
1 Index: svn/cpu/x86/Linux/Makefile
2 ===================================================================
3 --- svn.orig/cpu/x86/Linux/Makefile 2007-02-15 14:26:55.000000000 -0700
4 +++ svn/cpu/x86/Linux/Makefile 2007-02-15 14:52:41.000000000 -0700
5 @@ -23,14 +23,14 @@
6 # Use x86forth when you need to compile new dictionaries that will
7 # run on x86 systems.
8 forth: ${OBJS}
9 - ${CC} -o -m32 $@ ${OBJS}
10 + ${CC} -m32 -o $@ ${OBJS}
11 @ln -sf forth x86forth
13 # Compile with -O0 because with GCC4, higher optimization levels cause the
14 # functions to be reordered so the "inflate" entry point is no longer at
15 # the beginning.
16 inflate.o: ${ZIPDIR}/inflate.c
17 - ${CC} -c -m32 -O0 -fpic $< -o $@
18 + ${CC} -m32 -c -O0 -fpic $< -o $@
20 ../build/inflate.bin: inflate.o
21 objcopy -O binary $< $@