Fixing typing error in lh_binary_syslinux, thanks to Jean Pierre LeJacq <jp.lejacq@quoininc.com> (Closes: #443099).
This commit is contained in:
parent
9ceced95c4
commit
fbae06c426
|
@ -3,6 +3,8 @@ live-helper (1.0~a29-1) UNRELEASED; urgency=medium
|
|||
* New upstream release:
|
||||
- Adding preinst to take care about package upgrades with respect to
|
||||
directories that are symlinks now (Closes: #442408, #442922).
|
||||
- Fixed typing error in lh_binary_syslinux, thanks to Jean Pierre LeJacq
|
||||
<jp.lejacq@quoininc.com> (Closes: #443099).
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Mon, 24 Sep 2007 00:00:00 +0200
|
||||
|
||||
|
|
|
@ -588,7 +588,7 @@ case "${LH_BINARY_IMAGES}" in
|
|||
|
||||
# Configure syslinux templates
|
||||
sed -i -e "s@LINUX_LIVE@${LINUX_LIVE}@" -e "s@LINUX_INSTALL@${LINUX_INSTALL}@" -e "s@MEMTEST@${MEMTEST}@" "${DESTDIR}"/syslinux.cfg
|
||||
sed -i -e -e "s#LH_BOOTAPPEND_INSTALL#${LH_BOOTAPPEND_INSTALL}#" "s#LH_BOOTAPPEND_LIVE#${LH_BOOTAPPEND_LIVE}#" "${DESTDIR}"/syslinux.cfg
|
||||
sed -i -e "s#LH_BOOTAPPEND_INSTALL#${LH_BOOTAPPEND_INSTALL}#" -e "s#LH_BOOTAPPEND_LIVE#${LH_BOOTAPPEND_LIVE}#" "${DESTDIR}"/syslinux.cfg
|
||||
sed -i -e "s/LH_DISTRIBUTION/${LH_DISTRIBUTION}/" -e "s/LH_DATE/`date +%Y%m%d`/" -e "s/LH_MEDIA/hd-media/" "${DESTDIR}"/f1.txt #FIXME
|
||||
sed -i -e "s/LH_MEDIA/hd-media/" "${DESTDIR}"/f3.txt #FIXME
|
||||
sed -i -e "s/LH_VERSION/${VERSION}/" "${DESTDIR}"/f10.txt
|
||||
|
|
Loading…
Reference in New Issue