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 /nano | |
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 'nano')
-rw-r--r-- | nano/nano_1.2.1.oe | 5 | ||||
-rw-r--r-- | nano/nano_1.3.0.oe | 7 |
2 files changed, 7 insertions, 5 deletions
diff --git a/nano/nano_1.2.1.oe b/nano/nano_1.2.1.oe index 9c2e0b67b3..37bcf69ac1 100644 --- a/nano/nano_1.2.1.oe +++ b/nano/nano_1.2.1.oe @@ -4,10 +4,11 @@ Not ANOther editor) is an enhanced clone of the \ Pico text editor." SRC_URI = "${GNU_MIRROR}/nano/nano-${PV}.tar.gz \ - file://${FILESDIR}/configure.patch;patch=1" + file://configure.patch;patch=1 \ + file://glib.m4" inherit autotools do_configure_prepend () { - cp ${FILESDIR}/glib.m4 m4/ + cp ${WORKDIR}/glib.m4 m4/ } diff --git a/nano/nano_1.3.0.oe b/nano/nano_1.3.0.oe index 11a48d7e59..d24ac32e41 100644 --- a/nano/nano_1.3.0.oe +++ b/nano/nano_1.3.0.oe @@ -4,11 +4,12 @@ Not ANOther editor) is an enhanced clone of the \ Pico text editor." SRC_URI = "http://www.nano-editor.org/dist/v1.3/nano-${PV}.tar.gz \ - file://${FILESDIR}/configure.patch;patch=1 \ - file://${FILESDIR}/make.patch;patch=1" + file://configure.patch;patch=1 \ + file://make.patch;patch=1 \ + file://glib.m4" inherit autotools do_configure_prepend () { - cp ${FILESDIR}/glib.m4 m4/ + cp ${WORKDIR}/glib.m4 m4/ } |