diff options
Diffstat (limited to 'x11-plugins/gkrellshoot/files/makefile-respect-flags.patch')
-rw-r--r-- | x11-plugins/gkrellshoot/files/makefile-respect-flags.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch b/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch new file mode 100644 index 000000000000..8de89009dbbc --- /dev/null +++ b/x11-plugins/gkrellshoot/files/makefile-respect-flags.patch @@ -0,0 +1,26 @@ +--- a/Makefile 2006-12-09 04:24:36.000000000 +0100 ++++ b/Makefile 2013-03-16 13:50:00.147834790 +0100 +@@ -1,16 +1,20 @@ + GTK_INCLUDE = `pkg-config gtk+-2.0 --cflags` + GTK_LIB = `pkg-config gtk+-2.0 --libs` + +-FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE) ++FLAGS = -fPIC $(GTK_INCLUDE) + LIBS = $(GTK_LIB) + LFLAGS = -shared + +-CC = gcc $(CFLAGS) $(FLAGS) + + OBJS = gkrellshoot.o + ++all: gkrellshoot.so ++ ++%.o: %.c ++ $(CC) $(CFLAGS) $(LDFLAGS) $(FLAGS) -c -o $@ $< ++ + gkrellshoot.so: $(OBJS) +- $(CC) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS) ++ $(CC) $(CFLAGS) $(LDFLAGS) $(FLAGS) $(OBJS) -o gkrellshoot.so $(LFLAGS) $(LIBS) + + clean: + rm -f *.o core *.so* *.bak *~ |