Patch to avoid recompiling everything for minor version updates on Darwin

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@13022 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2002-03-06 11:51:06 +00:00
parent b49297675b
commit 1ca6088f9d
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Wed Mar 6 09:45:01 2002 Nicola Pero <n.pero@mi.flashnet.it>
* clean_os.sh: Remove minor version number for Darwin 5 (Patch
from Helge Hess <helge.hess@skyrix.com>).
Tue Mar 5 16:05:22 2002 Nicola Pero <n.pero@mi.flashnet.it>
* Instance/Shared/bundle.make (shared-instance-bundle-all): Fixed

View file

@ -31,6 +31,11 @@ case "$1" in
echo freebsd
exit 0
;;
# Remove version number for Darwin
darwin5*)
echo darwin5
exit 0
;;
*)
echo $1
exit 0