diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-06-15 17:28:51 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-06-15 17:28:51 +0000 |
commit | b49dab19c771f3a6093d1898db66cb6834dd03c6 (patch) | |
tree | 512b1ba2b75a5fba359c6327a777ee88b2a71670 | |
parent | 9cc7ddbeb33f41f5434dd901b7ed6f4bd8ab759d (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into home.hrw.one.pl:/home/szczepan/zaurus/oe/packages
2004/06/15 19:28:31+02:00 hrw.one.pl!hrw
fixed install part
BKrev: 40cf31d3oCFFf6k4RtMwvIXY1dpudw
-rw-r--r-- | stat/stat_3.3.oe | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stat/stat_3.3.oe b/stat/stat_3.3.oe index 178001171b..95e4bca565 100644 --- a/stat/stat_3.3.oe +++ b/stat/stat_3.3.oe @@ -9,5 +9,7 @@ do_stage() { } do_install() { - make install DESTDIR=${D} + install -d ${D}/usr/bin ${D}/usr/share/man/man1 + install -s -m 755 stat ${D}/usr/bin + install -m 644 stat.1 ${D}/usr/share/man/man1 } |