remove special case for netbsd64 gcc

db4
Doug Coleman 2008-04-07 14:49:31 -05:00
parent 4180472ae9
commit a24e2786c1
1 changed files with 0 additions and 5 deletions

View File

@ -89,11 +89,6 @@ set_md5sum() {
set_gcc() {
case $OS in
openbsd) ensure_program_installed egcc; CC=egcc;;
netbsd) if [[ $WORD -eq 64 ]] ; then
CC=/usr/pkg/gcc34/bin/gcc
else
CC=gcc
fi ;;
*) CC=gcc;;
esac
}