diff options
Diffstat (limited to 'autofs/autofs_3.1.7.oe')
-rw-r--r-- | autofs/autofs_3.1.7.oe | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/autofs/autofs_3.1.7.oe b/autofs/autofs_3.1.7.oe index e69de29bb2..71e1df204e 100644 --- a/autofs/autofs_3.1.7.oe +++ b/autofs/autofs_3.1.7.oe @@ -0,0 +1,18 @@ +DEPENDS = "virtual/libc" +RDEPENDS = "libc6" + +SRC_URI = "ftp://ftp.kernel.org/pub/linux/daemons/autofs/v3/autofs-${PV}.tar.bz2" + +inherit autotools + +do_configure_prepend () { + if [ ! -e acinclude.m4 ]; then + cp aclocal.m4 acinclude.m4 + fi +} + +do_install () { + install -d ${D}/${mandir}/man5 ${D}/${mandir}/man8 \ + ${D}/${sbindir} + oe_runmake 'INSTALLROOT=${D}' install +} |