From 1ca6088f9dd0f540341c036f3486fc7fea6b482e Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Wed, 6 Mar 2002 11:51:06 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ clean_os.sh | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1eca545e..6f141823 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Mar 6 09:45:01 2002 Nicola Pero + + * clean_os.sh: Remove minor version number for Darwin 5 (Patch + from Helge Hess ). + Tue Mar 5 16:05:22 2002 Nicola Pero * Instance/Shared/bundle.make (shared-instance-bundle-all): Fixed diff --git a/clean_os.sh b/clean_os.sh index 24ea1302..4de4b778 100755 --- a/clean_os.sh +++ b/clean_os.sh @@ -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