From: Misha Brukman Date: Thu, 29 May 2003 20:09:56 +0000 (+0000) Subject: Use an absolute path to TableGen because not everyone (e.g. automatic tester) X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6567975ec50e86f6f2717c075f053ad2cc9fbe99;p=oota-llvm.git Use an absolute path to TableGen because not everyone (e.g. automatic tester) has their path set up by this point. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6410 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SparcV9/Makefile b/lib/Target/SparcV9/Makefile index 8b946333c1c..a18719354ef 100644 --- a/lib/Target/SparcV9/Makefile +++ b/lib/Target/SparcV9/Makefile @@ -38,7 +38,7 @@ TEMP_EMITTER_INC = _temp_emitter.inc SparcV9CodeEmitter.inc: SparcV9.td @echo "TableGen-erating $@" - cpp -P SparcV9.td | tblgen -gen-emitter > $(TEMP_EMITTER_INC) + cpp -P SparcV9.td | $(TBLGEN) -gen-emitter > $(TEMP_EMITTER_INC) mv -f $(TEMP_EMITTER_INC) SparcV9CodeEmitter.inc clean::