diff options
author | Chris Larson <clarson@kergoth.com> | 2004-01-13 17:12:50 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-01-13 17:12:50 +0000 |
commit | c66ca9c303bb6078b513c6b0f528667da74396ee (patch) | |
tree | 6313474cc0dc81f68d8e860834eed46dce44fe87 /base-files | |
parent | fc22411e12ff4762ec5997d543c5637398580437 (diff) |
Merge direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/paths
into direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/packages
2004/01/13 11:10:14-06:00 ti.com!kergoth
Merge openembedded@openembedded.bkbits.net:packages
into direwolf.itg.ti.com:/home/kergoth/coding/projects/user/oe-metadata/paths
2004/01/13 10:56:32-06:00 ti.com!kergoth
Remove hardcoded references to target paths in a number of packages, replacing them with the use of our target path variables.
2004/01/13 17:40:06+01:00 uni-frankfurt.de!mickeyl
Merge bk://openembedded@openembedded.bkbits.net/packages
into gandalf.tm.informatik.uni-frankfurt.de:/usr/local/projects/oe-packages
2004/01/13 14:24:53+01:00 uni-frankfurt.de!mickeyl
add pyserial and sgmlop to buildsystem
BKrev: 40042712PUToOUzefh1XdY4q23VfEA
Diffstat (limited to 'base-files')
-rw-r--r-- | base-files/base-files_3.0.12.oe | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/base-files/base-files_3.0.12.oe b/base-files/base-files_3.0.12.oe index 55478e99c2..2117df257b 100644 --- a/base-files/base-files_3.0.12.oe +++ b/base-files/base-files_3.0.12.oe @@ -3,7 +3,7 @@ SRC_URI := ${DEBIAN_MIRROR}/main/b/base-files/base-files_3.0.12.tar.gz docdir_append=/${P} do_install () { install -d ${D}/${docdir} - install -d ${D}/usr/share/${PN} + install -d ${D}${datadir}/${PN} install -p -m 644 debian/changelog debian/FAQ \ debian/README.FHS debian/README.base ${D}/${docdir}/ cat debian/copyright.in | sed -e "s&#OSNAME#&${TARGET_OS}&g" \ @@ -12,14 +12,14 @@ do_install () { # cd debian && install -m 755 preinst postinst ${D}/DEBIAN # cd debian && install -m 644 conffiles ${D}/DEBIAN ( cd ${D} && install -d `cat ${S}/debian/directory-list` ) - install -p -m 644 share/* ${D}/usr/share/base-files - install -p -m 644 licenses/* ${D}/usr/share/common-licenses - ln -s LGPL-2.1 ${D}/usr/share/common-licenses/LGPL - ln -s GPL-2 ${D}/usr/share/common-licenses/GPL + install -p -m 644 share/* ${D}${datadir}/base-files + install -p -m 644 licenses/* ${D}${datadir}/common-licenses + ln -s LGPL-2.1 ${D}${datadir}/common-licenses/LGPL + ln -s GPL-2 ${D}${datadir}/common-licenses/GPL install -p -m 644 `ls etc/|grep -v debian` ${D}/etc rm -f ${D}/etc/motd - cat etc/motd | sed -e "s&#OSNAME#&${TARGET_OS}&g" > ${D}/usr/share/base-files/motd - cat share/info.dir | sed -e "s&#OSNAME#&${TARGET_OS}&g" > ${D}/usr/share/base-files/info.dir + cat etc/motd | sed -e "s&#OSNAME#&${TARGET_OS}&g" > ${D}${datadir}/base-files/motd + cat share/info.dir | sed -e "s&#OSNAME#&${TARGET_OS}&g" > ${D}${datadir}/base-files/info.dir gzip -9 ${docdir}/changelog # chown -R root:root ${D} # cd ${D} && chown root:src usr/src |