diff options
Diffstat (limited to 'stat/stat_3.3.oe')
-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 } |