X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=ian-dotfiles.git;a=blobdiff_plain;f=infra%2Fmakelinks;h=46c901e9b0c0a3d17a62abac41802243d6e6e231;hp=20faafc592912d757c74acf5b4de56e381d45e2e;hb=4a16ee9b9048392d29fc54b5d7215ef1ff1c20cf;hpb=4ed6df107b1db703ad86565447aa20b6385d3116 diff --git a/infra/makelinks b/infra/makelinks index 20faafc..46c901e 100755 --- a/infra/makelinks +++ b/infra/makelinks @@ -76,6 +76,18 @@ process_object () { inhome="$HOME/$underhome" prhome="~/$underhome" linktarget="$basepath/$ours" + chompy="$underhome" + while true; do + case "$chompy" in + *?/?*) + linktarget="../$linktarget" + chompy="${chompy%/*}" + ;; + *) + break + ;; + esac + done if [ "$inhome" -ef "$ours" ]; then good "already symlinked here" elif [ -h "$inhome" ]; then @@ -121,6 +133,31 @@ for ours in $nondots; do process_object done +exec 3