add a CONF.sh hint into the undefined errors

This commit is contained in:
Josip Rodin 2003-09-10 11:32:17 +00:00
parent 0c42347082
commit 6be365149c
1 changed files with 8 additions and 8 deletions

View File

@ -134,22 +134,22 @@ default:
# Basic checks in order to avoid problems # Basic checks in order to avoid problems
ok: ok:
ifndef TDIR ifndef TDIR
@echo TDIR undefined; false @echo TDIR undefined -- set up CONF.sh; false
endif endif
ifndef BASEDIR ifndef BASEDIR
@echo BASEDIR undefined; false @echo BASEDIR undefined -- set up CONF.sh; false
endif endif
ifndef MIRROR ifndef MIRROR
@echo MIRROR undefined; false @echo MIRROR undefined -- set up CONF.sh; false
endif endif
ifndef ARCH ifndef ARCH
@echo ARCH undefined; false @echo ARCH undefined -- set up CONF.sh; false
endif endif
ifndef CODENAME ifndef CODENAME
@echo CODENAME undefined; false @echo CODENAME undefined -- set up CONF.sh; false
endif endif
ifndef OUT ifndef OUT
@echo OUT undefined; false @echo OUT undefined -- set up CONF.sh; false
endif endif
ifdef NONFREE ifdef NONFREE
ifdef EXTRANONFREE ifdef EXTRANONFREE
@ -163,10 +163,10 @@ endif
endif endif
ifneq "$(DOJIGDO)" "0" ifneq "$(DOJIGDO)" "0"
ifndef JIGDOCMD ifndef JIGDOCMD
@echo JIGDOCMD undefined; false @echo JIGDOCMD undefined -- set up CONF.sh; false
endif endif
ifndef JIGDOTEMPLATEURL ifndef JIGDOTEMPLATEURL
@echo JIGDOTEMPLATEURL undefined; false @echo JIGDOTEMPLATEURL undefined -- set up CONF.sh; false
endif endif
else else
export JIGDOCMD=false export JIGDOCMD=false