From f61be85fdc821427f191b386659e3e046f58f039 Mon Sep 17 00:00:00 2001 From: Martin Pitt Date: Mon, 30 Sep 2013 13:59:57 +0200 Subject: [PATCH] ubuntu-touch: Make writable symlinks relative. --- debian/changelog | 6 ++++++ live-build/ubuntu-touch/hooks/03-etc-writable.chroot | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 4c9885db..974e5359 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (2.191) UNRELEASED; urgency=low + + * ubuntu-touch: Make writable symlinks relative. + + -- Martin Pitt Mon, 30 Sep 2013 13:58:45 +0200 + livecd-rootfs (2.190) saucy; urgency=low * ubuntu-touch: Add 03-etc-writable.chroot hook to move/symlink files in diff --git a/live-build/ubuntu-touch/hooks/03-etc-writable.chroot b/live-build/ubuntu-touch/hooks/03-etc-writable.chroot index 5ebf103e..4fc2c6dc 100755 --- a/live-build/ubuntu-touch/hooks/03-etc-writable.chroot +++ b/live-build/ubuntu-touch/hooks/03-etc-writable.chroot @@ -10,5 +10,5 @@ for f in timezone localtime; do mv /etc/$f /etc/writable/$f fi echo "I: Linking /etc/$f to /etc/writable/" - ln -s /etc/writable/$f /etc/$f + ln -s writable/$f /etc/$f done