Make all alpha variants the same

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9315 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-03-08 15:45:54 +00:00
parent 57448d8a48
commit 4d09f9ecc4
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2001-03-08 Adam Fedor <fedor@gnu.org>
* clean_cpu.sh: Make all alpha variants the same.
2001-03-07 Adam Fedor <fedor@gnu.org>
* GNUstep.sh.in: Switch PATH back to the way it was so GNUstep

View file

@ -26,6 +26,11 @@ case "$1" in
echo ix86
exit 0
;;
# Make all alpha variants the same
alpha*)
echo alpha
exit 0
;;
*)
echo $1
exit 0