From 443511d07b496a5968c170cd48732e2ce03fd3b1 Mon Sep 17 00:00:00 2001 From: "Laurento Frittella (mrfree)" Date: Wed, 1 Jun 2011 12:18:32 +0000 Subject: sys-fs/boxfs: New Ebuild for bug 369489 thanks to mgorny svn path=/sunrise/; revision=12125 --- sys-fs/boxfs/files/makefile_fixes.patch | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 sys-fs/boxfs/files/makefile_fixes.patch (limited to 'sys-fs/boxfs/files') diff --git a/sys-fs/boxfs/files/makefile_fixes.patch b/sys-fs/boxfs/files/makefile_fixes.patch new file mode 100644 index 000000000..92c26ee6e --- /dev/null +++ b/sys-fs/boxfs/files/makefile_fixes.patch @@ -0,0 +1,21 @@ +diff -Naur boxfs-0.7.orig//Makefile boxfs-0.7/Makefile +--- boxfs-0.7.orig//Makefile 2011-06-01 14:11:42.502273527 +0200 ++++ boxfs-0.7/Makefile 2011-06-01 14:12:34.156523428 +0200 +@@ -7,7 +7,7 @@ + + boxfs: $(OBJS) + @echo "Building $@" +- @gcc -o $@ $(OBJS) $(LIBS) ++ $(CC) $(FLAGS) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + + boxapi.o: boxapi.c boxapi.h boxpath.h boxhttp.h boxopts.h + boxfs.o: boxfs.c boxapi.h +@@ -17,7 +17,7 @@ + + .c.o: + @echo Compiling $< +- @gcc $(FLAGS) -c $< -o $@ ++ $(CC) $(FLAGS) -c $< -o $@ + + .PHONY: clean install + -- cgit v1.2.3-18-g5258