From 413b2774a909498e791e1c2cdc36398df863c068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Thu, 12 Nov 2015 15:44:05 +0100 Subject: [PATCH] Let the data/debian-cd symlink point to sid It's more likely to always exists. The wheezy target is just gone with newer live-builds... --- auto/config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auto/config b/auto/config index e454dd1..a232589 100755 --- a/auto/config +++ b/auto/config @@ -55,13 +55,13 @@ eval set -- "$temp" dist=$(curl -s $kali_mirror/dists/$dist/Release | awk '/^Codename:/ {print $2}') # live-build doesn't work if --parent-debian-distribution is unknown of -# debian-cd => we have to put a symlink so that it deals with kali like wheezy +# debian-cd => we have to put a symlink so that it deals with kali like sid if [ ! -e ${LIVE_BUILD:-/usr/share/live/build}/data/debian-cd/$dist ]; then if [ -w ${LIVE_BUILD:-/usr/share/live/build}/data/debian-cd ]; then - ln -sf wheezy ${LIVE_BUILD:-/usr/share/live/build}/data/debian-cd/$dist + ln -sf sid ${LIVE_BUILD:-/usr/share/live/build}/data/debian-cd/$dist else echo "ERROR: Run this first:" - echo "ln -sf wheezy ${LIVE_BUILD:-/usr/share/live/build}/data/debian-cd/$dist" + echo "ln -sf sid ${LIVE_BUILD:-/usr/share/live/build}/data/debian-cd/$dist" exit 1 fi fi