From 2e77248ab194f9b38fb25be575070369113ece77 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 27 Dec 2006 15:49:16 +0000 Subject: [PATCH] Er, further makedist fixes. Helps if you test _before_ checkin. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@7025 cda61777-01e9-0310-a592-d414129be87e --- makedist.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/makedist.sh b/makedist.sh index 1afaed2..4e695b6 100755 --- a/makedist.sh +++ b/makedist.sh @@ -32,6 +32,7 @@ perl mkfiles.pl mkdir tmp.$$ mkdir tmp.$$/puzzles$arcsuffix +mkdir tmp.$$/puzzles$arcsuffix/icons # Build Windows Help and text versions of the manual for convenience. halibut --winhelp=puzzles.hlp --text=puzzles.txt puzzles.but @@ -44,7 +45,10 @@ for i in *.c *.m *.h *.R *.but *.plist *.icns LICENCE README Recipe \ HACKING puzzles.txt puzzles.hlp puzzles.cnt puzzles.chm \ icons/Makefile icons/*.{sav,pl,sh} icons/win16pal.xpm \ icons/*.png icons/*.ico icons/*.rc icons/*.c; do - ln -s ../../$i tmp.$$/puzzles$arcsuffix + case $i in + */*) ln -s ../../../$i tmp.$$/puzzles$arcsuffix/$i;; + *) ln -s ../../$i tmp.$$/puzzles$arcsuffix/$i;; + esac if test "x$ver" != "x"; then md5sum $i >> tmp.$$/puzzles$arcsuffix/manifest fi -- 2.11.0