diff options
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/ } |