diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-04-30 20:04:10 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-04-30 20:04:10 +0000 |
commit | 2532a53293ba3f838f6cd15401de42400fa40908 (patch) | |
tree | 9eaecc27daa66d7624baa0ada9443d8cbe027722 /busybox | |
parent | 6a30b821b292e8c18bb67677f6b773bbdcf31a22 (diff) |
duh. install udhcp helper into correct directory - patch courtesy pb_.
BKrev: 4092b13athVF4rpExQosCC9BeQFUhQ
Diffstat (limited to 'busybox')
-rw-r--r-- | busybox/busybox_1.00-pre10.oe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/busybox/busybox_1.00-pre10.oe b/busybox/busybox_1.00-pre10.oe index 17891d5710..dd59ee1c95 100644 --- a/busybox/busybox_1.00-pre10.oe +++ b/busybox/busybox_1.00-pre10.oe @@ -15,7 +15,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.gz" S = "${WORKDIR}/busybox-${PV}" export EXTRA_CFLAGS = "${CFLAGS}" EXTRA_OEMAKE_append = " CROSS=${HOST_PREFIX}" -FILES_${PN} += " ${datadir}/udhcp" +FILES_${PN} += " ${datadir}/udhcpc" inherit cml1 @@ -35,5 +35,5 @@ do_install () { install -m 0755 ${FILESDIR}/syslog ${D}/etc/init.d/syslog install -m 0755 ${FILESDIR}/hwclock.sh ${D}/etc/init.d/hwclock.sh install -d ${D}${datadir}/udhcp - install -m 0755 ${S}/examples/udhcp/simple.script ${D}${datadir}/udhcp/default.script + install -m 0755 ${S}/examples/udhcp/simple.script ${D}${datadir}/udhcpc/default.script } |