diff options
author | Koen Kooi <koen@openembedded.org> | 2008-01-26 12:56:08 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-01-26 12:56:08 +0000 |
commit | f111701e2498eea29baf12e06b454eadc28f9ad2 (patch) | |
tree | 611cd5c55586ca0c22ea67d849f06597c86ed2b6 | |
parent | 36efb322cb219e0b8dffff12d94b66cdde4e67c3 (diff) |
fastjar: install binaries instead of libtool wrappers to make it rm_work safe
-rw-r--r-- | packages/fastjar/fastjar-native_0.95.bb | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/fastjar/fastjar-native_0.95.bb b/packages/fastjar/fastjar-native_0.95.bb index 520235d799..3d003306b8 100644 --- a/packages/fastjar/fastjar-native_0.95.bb +++ b/packages/fastjar/fastjar-native_0.95.bb @@ -4,6 +4,8 @@ SECTION = "devel" PRIORITY = "optional" LICENSE = "GPL" +PR = "r1" + DEPENDS = "zlib-native" SRC_URI = "http://download.savannah.nongnu.org/releases/fastjar/fastjar-${PV}.tar.gz" @@ -20,7 +22,8 @@ do_configure () { } do_stage() { + #we should teach autotools.bbclass:autotools_stage_all() about ${STAGING_BINDIR} install -d ${STAGING_BINDIR} - install -m 755 fastjar ${STAGING_BINDIR}/fastjar - install -m 755 grepjar ${STAGING_BINDIR} + install -m 755 .libs/fastjar ${STAGING_BINDIR}/fastjar + install -m 755 .libs/grepjar ${STAGING_BINDIR} } |