diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2005-04-02 16:48:05 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2005-04-02 16:48:05 +0000 |
commit | d32f9c4d69ebe7d965575ddff02a518cc309a3bf (patch) | |
tree | 1efd58c3148f3746903128df8e21d04a3e71d781 | |
parent | 633967445521c8ad00d1a7b4774a42afa9ca410a (diff) | |
download | upstream-d32f9c4d69ebe7d965575ddff02a518cc309a3bf.tar.gz upstream-d32f9c4d69ebe7d965575ddff02a518cc309a3bf.tar.bz2 upstream-d32f9c4d69ebe7d965575ddff02a518cc309a3bf.zip |
looks like not wbx is the only one who can forget a file ;)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@523 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/squashfs-lzma/squashfs2.0-tools-lzma.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/target/squashfs-lzma/squashfs2.0-tools-lzma.patch b/target/squashfs-lzma/squashfs2.0-tools-lzma.patch new file mode 100644 index 0000000000..324f8d8220 --- /dev/null +++ b/target/squashfs-lzma/squashfs2.0-tools-lzma.patch @@ -0,0 +1,22 @@ +--- squashfs2.0/squashfs-tools/Makefile 2004-04-30 19:29:35.000000000 +0400 ++++ squashfs-tools/Makefile 2005-01-20 14:57:53.423668596 +0300 +@@ -1,12 +1,18 @@ + INCLUDEDIR = . ++#LZMAPATH = ../lzma/SRC/7zip/Compress/LZMA_Lib + + CFLAGS := -I$(INCLUDEDIR) -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -O2 + + mksquashfs: mksquashfs.o read_fs.o sort.o + $(CC) mksquashfs.o read_fs.o sort.o -lz -o $@ + ++mksquashfs-lzma: mksquashfs.o read_fs.o sort.o ++ $(CXX) mksquashfs.o read_fs.o sort.o -L$(LZMAPATH) -llzma -o $@ ++ + mksquashfs.o: mksquashfs.c mksquashfs.h + + read_fs.o: read_fs.c read_fs.h + + sort.o: sort.c ++ ++clean: ++ rm -f *.o mksquashfs mksquashfs-lzma |