Import patches-unapplied version 1.128 to ubuntu/maverick

Imported using git-ubuntu import.

Changelog parent: 1091736d01

New changelog entries:
  * do not mangle the project name by attaching the subarch to it on armel,
    this results in livefs names that confuse find-live_filesystem
impish
Oliver Grawert 15 years ago committed by usd-importer
parent 1091736d01
commit 04f41c1d61

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (1.128) maverick; urgency=low
* do not mangle the project name by attaching the subarch to it on armel,
this results in livefs names that confuse find-live_filesystem
-- Oliver Grawert <ogra@ubuntu.com> Tue, 29 Jun 2010 23:04:10 +0200
livecd-rootfs (1.127) maverick; urgency=low livecd-rootfs (1.127) maverick; urgency=low
* make BuildLiveCD set $SUBARCHARG properly again, else livecd.sh doesnt get * make BuildLiveCD set $SUBARCHARG properly again, else livecd.sh doesnt get

@ -202,6 +202,15 @@ for FS in "$@"; do
DEV="" DEV=""
COMP="main restricted" COMP="main restricted"
# we dont want to mangle the project name on armel
# but keep it to not confuse debian-cd/cdimage
case $TARGETARCH in
armel)
FSS=$FS
;;
esac
;;
select_mirror select_mirror
# Just in case there's some leftover junk here: # Just in case there's some leftover junk here:

Loading…
Cancel
Save