From 8401e5e34e0c5dfdf3085906fd3c60b53b65a012 Mon Sep 17 00:00:00 2001 From: leslie Date: Sat, 5 Dec 2009 18:41:46 +0800 Subject: [PATCH] sasc: fixed makelink.sh --- contrib/sasc-ng/makelinks.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/sasc-ng/makelinks.sh b/contrib/sasc-ng/makelinks.sh index 4257866..b6ef39f 100644 --- a/contrib/sasc-ng/makelinks.sh +++ b/contrib/sasc-ng/makelinks.sh @@ -15,5 +15,7 @@ mkdir -p "$DEST" dir=`dirname "$base"` mkdir -p "$DEST/$dir" COR=`echo -n "$DEST/$dir" | sed -e 'sX/\.XX' | sed -e 'sX[^/]*X..Xg'` - ln -sf "$PAR/$COR/$SRC/$base" "$DEST/$base" + if [ "$base" != "contrib" ]; then + ln -sf "$PAR/$COR/$SRC/$base" "$DEST/$base" + fi done -- 2.39.5