diff options
author | Koen Kooi <koen@openembedded.org> | 2005-06-30 08:19:37 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-06-30 08:19:37 +0000 |
commit | c8e5702127e507e82e6f68a4b8c546803accea9d (patch) | |
tree | 00583491f40ecc640f2b28452af995e3a63a09d7 /packages/libdes/libdes-4.01/cross-compile.patch | |
parent | 87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff) |
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/libdes/libdes-4.01/cross-compile.patch')
-rw-r--r-- | packages/libdes/libdes-4.01/cross-compile.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/libdes/libdes-4.01/cross-compile.patch b/packages/libdes/libdes-4.01/cross-compile.patch index e69de29bb2..23fb518246 100644 --- a/packages/libdes/libdes-4.01/cross-compile.patch +++ b/packages/libdes/libdes-4.01/cross-compile.patch @@ -0,0 +1,35 @@ + +# +# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher +# + +--- libdes/Makefile~cross-compile 1997-01-13 18:27:30.000000000 +0100 ++++ libdes/Makefile 2004-02-15 01:57:46.000000000 +0100 +@@ -42,10 +42,10 @@ + #DES_ENC=asm/dx86-sol.o # solaris format x86 + #DES_ENC=asm/dx86bsdi.o # bsdi format x86 + +-LIBDIR=/usr/local/lib +-BINDIR=/usr/local/bin +-INCDIR=/usr/local/include +-MANDIR=/usr/local/man ++LIBDIR=$(DESTDIR)/usr/lib ++BINDIR=$(DESTDIR)/usr/bin ++INCDIR=$(DESTDIR)/usr/include ++MANDIR=$(DESTDIR)/usr/man + MAN1=1 + MAN3=3 + SHELL=/bin/sh +@@ -94,10 +94,8 @@ + + $(DLIB): $(OBJS) + /bin/rm -f $(DLIB) +- ar cr $(DLIB) $(OBJS) +- -if test -s /bin/ranlib; then /bin/ranlib $(DLIB); \ +- else if test -s /usr/bin/ranlib; then /usr/bin/ranlib $(DLIB); \ +- else exit 0; fi; fi ++ $(AR) cr $(DLIB) $(OBJS) ++ $(RANLIB) $(DLIB) + + des_opts: des_opts.o libdes.a + $(CC) $(CFLAGS) -o des_opts des_opts.o libdes.a |