diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /squashfs-tools/files | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'squashfs-tools/files')
-rw-r--r-- | squashfs-tools/files/flags.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/squashfs-tools/files/flags.patch b/squashfs-tools/files/flags.patch deleted file mode 100644 index 39bada8908..0000000000 --- a/squashfs-tools/files/flags.patch +++ /dev/null @@ -1,31 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - ---- squashfs-tools/Makefile~flags 2004-04-30 11:29:35.000000000 -0400 -+++ squashfs-tools/Makefile 2004-09-13 00:43:08.922418512 -0400 -@@ -1,12 +1,20 @@ -+CC = gcc -+CCLD = $(CC) - INCLUDEDIR = . -- --CFLAGS := -I$(INCLUDEDIR) -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -O2 -+CFLAGS_R = -I$(INCLUDEDIR) -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -+CFLAGS = -O2 -+LDFLAGS_R = -+LDFLAGS = -+LIBS = -lz - - mksquashfs: mksquashfs.o read_fs.o sort.o -- $(CC) mksquashfs.o read_fs.o sort.o -lz -o $@ -+ $(CCLD) $(LDFLAGS_R) $(LDFLAGS) mksquashfs.o read_fs.o sort.o $(LIBS) -o $@ - - mksquashfs.o: mksquashfs.c mksquashfs.h -+ $(CC) $(CFLAGS_R) $(CFLAGS) -c -o mksquashfs.o mksquashfs.c - - read_fs.o: read_fs.c read_fs.h -+ $(CC) $(CFLAGS_R) $(CFLAGS) -c -o read_fs.o read_fs.c - - sort.o: sort.c -+ $(CC) $(CFLAGS_R) $(CFLAGS) -c -o sort.o sort.c |