diff options
author | Matthias Hentges <oe@hentges.net> | 2004-10-11 15:05:02 +0000 |
---|---|---|
committer | Matthias Hentges <oe@hentges.net> | 2004-10-11 15:05:02 +0000 |
commit | da9e38236f66050e87d8bd2c8f05f2326282aa58 (patch) | |
tree | b9bfd64e913f7d98403f7105f43a7ba6bf5f8469 /autofs | |
parent | eaf972b286b334de7e24cf399de92627f89f3175 (diff) |
More section fixes
BKrev: 416aa11e6aH4cgLtXbfv7aBu9HJHoQ
Diffstat (limited to 'autofs')
-rw-r--r-- | autofs/autofs_3.1.7.oe | 2 | ||||
-rw-r--r-- | autofs/autofs_4.0.0.oe | 1 | ||||
-rw-r--r-- | autofs/autofs_4.1.3.oe | 21 |
3 files changed, 23 insertions, 1 deletions
diff --git a/autofs/autofs_3.1.7.oe b/autofs/autofs_3.1.7.oe index 865c0263c5..2f342fd7ab 100644 --- a/autofs/autofs_3.1.7.oe +++ b/autofs/autofs_3.1.7.oe @@ -1,5 +1,5 @@ DESCRIPTION = "Kernel based automounter for linux." - +SECTION = "base" SRC_URI = "ftp://ftp.kernel.org/pub/linux/daemons/autofs/v3/autofs-${PV}.tar.bz2" inherit autotools diff --git a/autofs/autofs_4.0.0.oe b/autofs/autofs_4.0.0.oe index c068240111..ac1266c4c3 100644 --- a/autofs/autofs_4.0.0.oe +++ b/autofs/autofs_4.0.0.oe @@ -1,4 +1,5 @@ DESCRIPTION = "Kernel based automounter for linux." +SECTION = "base" SRC_URI = "ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/old/autofs-${PV}-1.tar.bz2" diff --git a/autofs/autofs_4.1.3.oe b/autofs/autofs_4.1.3.oe index e69de29bb2..f326d04a0b 100644 --- a/autofs/autofs_4.1.3.oe +++ b/autofs/autofs_4.1.3.oe @@ -0,0 +1,21 @@ +DESCRIPTION = "Kernel based automounter for linux." +SECTION = "base" + +SRC_URI = "ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/autofs-${PV}.tar.bz2 \ + http://www.kernel.org/pub/linux/daemons/autofs/v4/autofs-4.1.3-bad_chdir.patch;patch=1 \ + http://www.kernel.org/pub/linux/daemons/autofs/v4/autofs-4.1.3-mtab_lock.patch;patch=1 \ + http://www.kernel.org/pub/linux/daemons/autofs/v4/autofs-4.1.3-non_block_ping.patch;patch=1 \ + http://www.kernel.org/pub/linux/daemons/autofs/v4/autofs-4.1.3-strict.patch;patch=1 \ + file://cross.patch;patch=1" + +inherit autotools + +do_configure_prepend () { + if [ ! -e acinclude.m4 ]; then + cp aclocal.m4 acinclude.m4 + fi +} + +do_install () { + oe_runmake 'INSTALLROOT=${D}' install +} |