From f0a876b8a2414b78968f7925a009bd1f57a3a023 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 18 Jan 2009 13:09:23 +0000 Subject: Add latencytop 0.4 --- .../latencytop-0.4/latencytop-makefile.patch | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch (limited to 'meta-moblin/packages/latencytop/latencytop-0.4') diff --git a/meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch b/meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch new file mode 100644 index 000000000..8840d3880 --- /dev/null +++ b/meta-moblin/packages/latencytop/latencytop-0.4/latencytop-makefile.patch @@ -0,0 +1,32 @@ +--- a/Makefile 2008-11-14 22:55:51.000000000 +0800 ++++ b/Makefile 2008-11-14 23:00:51.000000000 +0800 +@@ -1,7 +1,8 @@ + DESTDIR = + SBINDIR = /usr/sbin + XCFLAGS = -W `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare +-LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncursesw ++LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncurses ++CC ?= gcc + + # + # The w in -lncursesw is not a typo; it is the wide-character version +@@ -14,10 +15,10 @@ LDF = -Wl,--as-needed `pkg-config --libs + + # We write explicity this "implicit rule" + %.o : %.c +- gcc -c $(CFLAGS) $(XCFLAGS) $< -o $@ ++ $(CC) -c $(CFLAGS) $(XCFLAGS) $< -o $@ + + latencytop: latencytop.o display.o latencytop.h translate.o Makefile +- gcc $(CFLAGS) latencytop.o display.o translate.o $(LDF) -o latencytop ++ $(CC) $(CFLAGS) latencytop.o display.o translate.o $(LDF) -o latencytop + + + clean: +@@ -25,5 +26,6 @@ clean: + + install: latencytop + mkdir -p $(DESTDIR)/usr/share/latencytop ++ mkdir -p $(DESTDIR)$(SBINDIR) + install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans + install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/ -- cgit v1.2.3