소스 검색

[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 13 년 전
부모
커밋
cbb1654db6
1개의 변경된 파일0개의 추가작업 그리고 4개의 파일을 삭제
  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 >>>>