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