diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 23:19:30 +0100 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-22 23:19:30 +0100 |
| commit | dbc8892b09f3f5772f5313fc6df2faabd0187d9b (patch) | |
| tree | 27918f9dad6f7d73725b6991ed00295ab4c07376 /meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch | |
| parent | 833390e533ee997600f37ec87192f05e49e26db3 (diff) | |
| download | poky-dbc8892b09f3f5772f5313fc6df2faabd0187d9b.tar.gz | |
latencytop: Move from meta-moblin to meta
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch')
| -rw-r--r-- | meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch b/meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch deleted file mode 100644 index b979f57cae..0000000000 --- a/meta-moblin/packages/latencytop/latencytop-0.5/latencytop-makefile.patch +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 1 | --- a/Makefile 2010-07-20 18:51:32.000000000 +0800 | ||
| 2 | +++ b/Makefile 2010-07-20 18:54:54.000000000 +0800 | ||
| 3 | @@ -4,7 +4,8 @@ | ||
| 4 | DESTDIR = | ||
| 5 | SBINDIR = /usr/sbin | ||
| 6 | XCFLAGS = -W -g `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare | ||
| 7 | -LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncursesw | ||
| 8 | +LDF = -Wl,--as-needed `pkg-config --libs glib-2.0` -lncurses | ||
| 9 | +CC ?= gcc | ||
| 10 | |||
| 11 | OBJS= latencytop.o text_display.o translate.o fsync.o | ||
| 12 | |||
| 13 | @@ -26,16 +27,17 @@ | ||
| 14 | |||
| 15 | # We write explicity this "implicit rule" | ||
| 16 | %.o : %.c | ||
| 17 | - gcc -c $(CFLAGS) $(XCFLAGS) $< -o $@ | ||
| 18 | + $(CC) -c $(CFLAGS) $(XCFLAGS) $< -o $@ | ||
| 19 | |||
| 20 | latencytop: $(OBJS) latencytop.h Makefile | ||
| 21 | - gcc $(CFLAGS) $(OBJS) $(LDF) -o latencytop | ||
| 22 | + $(CC) $(CFLAGS) $(OBJS) $(LDF) -o latencytop | ||
| 23 | |||
| 24 | clean: | ||
| 25 | rm -f *~ latencytop DEADJOE *.o | ||
| 26 | |||
| 27 | install: latencytop | ||
| 28 | mkdir -p $(DESTDIR)/usr/share/latencytop | ||
| 29 | + mkdir -p $(DESTDIR)/$(SBINDIR) | ||
| 30 | install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans | ||
| 31 | install -m 0644 *.png $(DESTDIR)/usr/share/latencytop/ | ||
| 32 | install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/ | ||
