Explorar el Código

[build] Build does not require $HADOOP_HOME

* Since we're fully mavenized, the Makefile doesn't need to check for
  HADOOP_HOME anymore.
* Note that unit tests still need it.
bc Wong hace 13 años
padre
commit
cbb1654db6
Se han modificado 1 ficheros con 0 adiciones y 4 borrados
  1. 0 4
      Makefile

+ 0 - 4
Makefile

@@ -89,10 +89,6 @@ CREPO ?= $(shell which crepo 2> /dev/null)
 ifeq ($(CREPO),)
   $(error "Error: Need crepo. See <http://github.com/cloudera/crepo>.")
 endif
-
-ifneq ($(shell test -e $(HADOOP_HOME)/bin/hadoop && echo $$?),0)
-  $(error "Error: No Hadoop installation at $(HADOOP_HOME). Please set $$HADOOP_HOME.")
-endif
 # END DEV ONLY >>>>