*** empty log message ***
This commit is contained in:
parent
175a7a85d1
commit
19adc99a8b
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Software License Agreement (BSD License)
|
Software License Agreement (BSD License)
|
||||||
|
|
||||||
Copyright (c) 2006-2007, Hyung-Hwan Chung (brian@abiyo.net)
|
Copyright (c) 2006-2007, Hyung-Hwan Chung
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
@ -45,13 +45,21 @@ finalize ()
|
|||||||
|
|
||||||
case "$full" in
|
case "$full" in
|
||||||
*.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in)
|
*.h|*.c|*.cc|*.cpp|*.java|*.awk|*.in)
|
||||||
"$HOME/awk" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full"
|
"$AWK" -f "$BASE/rel/lic.awk" -a "$target/$file" "$full"
|
||||||
|
;;
|
||||||
|
*.man)
|
||||||
|
tmp=`echo $i | sed 's/.man$/.html/'`
|
||||||
|
"$AWK" -f "$BASE/rel/doc.awk" "$full" > "$root/$tmp"
|
||||||
|
cp -f "$full" "$target/$file"
|
||||||
|
;;
|
||||||
|
*.css)
|
||||||
|
cp -f "$full" "$target/$file"
|
||||||
|
cp -f "$full" "$root/$file"
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
cp -f "$full" "$target/$file"
|
cp -f "$full" "$target/$file"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
#echo "$full,$BASE,$file: $BASE/xxx/$file [OK]"
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@ -62,6 +70,8 @@ then
|
|||||||
#exit 1;
|
#exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AWK="$HOME/awk"
|
||||||
|
|
||||||
VER=`cat ../CVS/Tag | cut -c6- | tr '[A-Z]' '[a-z]' | sed 's/_/./g`
|
VER=`cat ../CVS/Tag | cut -c6- | tr '[A-Z]' '[a-z]' | sed 's/_/./g`
|
||||||
VER="0.1.0"
|
VER="0.1.0"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user