Просмотр исходного кода

flex and bison not needed for the data generator.

cartershanklin 12 лет назад
Родитель
Сommit
6545546cba
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      build.sh

+ 1 - 1
build.sh

@@ -1,7 +1,7 @@
 #!/bin/sh
 
 # Check for all the stuff I need to function.
-for f in gcc flex bison mvn; do
+for f in gcc mvn; do
 	which $f > /dev/null 2>&1
 	if [ $? -ne 0 ]; then
 		echo "Required program $f is missing. Please install it and try again."