aboutsummaryrefslogtreecommitdiffstats
path: root/resolvconf
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-12-03 04:22:15 +0000
committerChris Larson <clarson@kergoth.com>2003-12-03 04:22:15 +0000
commit4e62832980e7c7f1d205e67c6db89dcdff200b6b (patch)
tree8a48d25578735621192b1edad8cf246818b7585b /resolvconf
parentb79d37952fe99f5821686e1810a036d25d07ab0d (diff)
downloadopenembedded-4e62832980e7c7f1d205e67c6db89dcdff200b6b.tar.gz
Remove unnecessary sets of the S variable, we have a sane default for that now.
BKrev: 3fcd64f7p2VYsNYNbFnMtPYuY-5tZQ
Diffstat (limited to 'resolvconf')
-rw-r--r--resolvconf/resolvconf_1.2.oe16
1 files changed, 16 insertions, 0 deletions
diff --git a/resolvconf/resolvconf_1.2.oe b/resolvconf/resolvconf_1.2.oe
index e69de29bb2..5403ccd45a 100644
--- a/resolvconf/resolvconf_1.2.oe
+++ b/resolvconf/resolvconf_1.2.oe
@@ -0,0 +1,16 @@
+SRC_URI := ${DEBIAN_MIRROR}/main/r/${PN}/${PN}_${PV}.tar.gz
+
+do_compile () {
+ oenote "Nothing to compile"
+}
+
+do_install () {
+ install -d ${D}/${sysconfdir} ${D}/${sbindir} ${D}/sbin ${D}/var/run/resolvconf/interface
+ install -d ${D}/${datadir}/doc/${P}
+ install -d ${D}/${mandir}/man8
+ cp -a etc/* ${D}/${sysconfdir}/
+ cp -a sbin/* ${D}/sbin/
+ cp -a usr/* ${D}/${prefix}/
+ install debian/README debian/ANNOUNCE ${D}/${datadir}/doc/${P}/
+ install man/resolvconf.8 man/update-resolv.8 ${D}/${mandir}/man8/
+}