diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
commit | 2b8f679ffe5929b5a11eb71e514aa4997c36f13e (patch) | |
tree | cab0f25aca03f6162bd268a401945fbfbb63bff9 /ifupdown | |
parent | 5df179157f90b18f437c6978efb451f515e3d1c9 (diff) |
Merges.
2004/05/22 12:46:48-04:00 local!kergoth
Bugfixes per the recent FILESDIR cleanup.
2004/05/22 01:03:38-04:00 local!kergoth
Run a perl script against the repo to kill off direct FILESDIR usage
in favor of relative file:// paths in SRC_URI, and WORKDIR references
in functions.
2004/05/21 23:07:58-04:00 local!kergoth
Switch file:// FILESDIR uris in SRC_URI to the new relative path format.
BKrev: 40af8428aNyDLBX0MRtyso3VCpMv1w
Diffstat (limited to 'ifupdown')
-rw-r--r-- | ifupdown/ifupdown_0.6.4.oe | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/ifupdown/ifupdown_0.6.4.oe b/ifupdown/ifupdown_0.6.4.oe index 0253e5f151..2aeca5c5d1 100644 --- a/ifupdown/ifupdown_0.6.4.oe +++ b/ifupdown/ifupdown_0.6.4.oe @@ -5,11 +5,13 @@ configure (or, respectively, deconfigure) network interfaces, based on \ the file /etc/network/interfaces." SRC_URI = "${DEBIAN_MIRROR}/main/i/ifupdown/ifupdown_${PV}.orig.tar.gz \ - ${DEBIAN_MIRROR}/main/i/ifupdown/ifupdown_${PV}-4.8.diff.gz;patch=1 \ - file://${FILESDIR}/busybox.patch;patch=1 \ - file://${FILESDIR}/udhcpc.patch;patch=1 \ - file://${FILESDIR}/zeroconf.patch;patch=1 \ - file://${FILESDIR}/gcc34-fix.patch;patch=1" + ${DEBIAN_MIRROR}/main/i/ifupdown/ifupdown_${PV}-4.8.diff.gz;patch=1 \ + file://busybox.patch;patch=1 \ + file://udhcpc.patch;patch=1 \ + file://zeroconf.patch;patch=1 \ + file://gcc34-fix.patch;patch=1 \ + file://init \ + file://interfaces" EXTRA_OEMAKE = "" @@ -24,6 +26,6 @@ do_install () { ${D}/sbin install -m 0755 ifup ${D}/sbin/ ln ${D}/sbin/ifup ${D}/sbin/ifdown - install -m 0644 ${FILESDIR}/init ${D}/etc/init.d/networking - install -m 0644 ${FILESDIR}/interfaces ${D}/etc/network/interfaces + install -m 0644 ${WORKDIR}/init ${D}/etc/init.d/networking + install -m 0644 ${WORKDIR}/interfaces ${D}/etc/network/interfaces } |