diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /comprec/comprec-0.02 | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'comprec/comprec-0.02')
-rw-r--r-- | comprec/comprec-0.02/makefile.patch | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/comprec/comprec-0.02/makefile.patch b/comprec/comprec-0.02/makefile.patch deleted file mode 100644 index 9693351aa9..0000000000 --- a/comprec/comprec-0.02/makefile.patch +++ /dev/null @@ -1,51 +0,0 @@ - -# -# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher -# - ---- comprec-0.02/Makefile~makefile 2003-02-16 16:53:11.000000000 -0500 -+++ comprec-0.02/Makefile 2004-03-04 03:38:50.000000000 -0500 -@@ -1,12 +1,15 @@ --ZROOT=/home/zaurus/develop --CC_NATIVE=gcc --CC=$(ZROOT)/arm/bin/arm-linux-gcc --AS=$(ZROOT)/arm/bin/arm-v4l-linux-as --STRIP=$(ZROOT)/arm/bin/arm-v4l-linux-strip -+BUILD_CC=gcc -+CC=$(BUILD_CC) -+AS=as -+LD=ld -+STRIP=strip - IPKG_BUILD=./ipkg-build - --CFLAGS+=-Wall -O2 -fno-exceptions -g --LDFLAGS+=-lm -g -+CFLAGS=-Wall -O2 -fno-exceptions -+LDFLAGS= -+LIBS=-lm -+BUILD_CFLAGS=$(CFLAGS) -+BUILD_LDFLAGS=$(LDFLAGS) - - VERSION=0.02 - -@@ -22,17 +25,17 @@ - comprec0.png comprec.desktop - - shine: table1.h table2.h $(OBJECTS) -- $(CC) -o $@ $(OBJECTS) $(LDFLAGS) -+ $(CC) -o $@ $(LDFLAGS) $(LIBS) $(OBJECTS) - $(STRIP) $@ - - Maindlg.py: Maindlg.ui - pyuic Maindlg.ui > Maindlg.py - - table1.h table2.h: tables -- tables -+ ./tables - - tables: tables.c -- $(CC_NATIVE) -o $@ $(CFLAGS) $< -lm -+ $(BUILD_CC) -o $@ $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(LIBS) $< - - clean: - rm -f $(OBJECTS) shine .depend |