summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorwisberg <wisberg>2003-04-29 17:50:43 +0000
committerwisberg <wisberg>2003-04-29 17:50:43 +0000
commitc682beb5b39a795db3590f7a781ea960c1c48cec (patch)
treeb4e355399be2e0cdd458091dec915d4490283090 /build
parent15443c9de3198fd610487f9711b986732c1b25ee (diff)
downloadaspectj-c682beb5b39a795db3590f7a781ea960c1c48cec.tar.gz
aspectj-c682beb5b39a795db3590f7a781ea960c1c48cec.zip
error messages for undefined ${module.name}
Diffstat (limited to 'build')
-rw-r--r--build/build.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/build.xml b/build/build.xml
index 5c1cecd7a..bd51ebb0d 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -274,18 +274,21 @@
<!-- for any-[module|product], define [module|product].name -->
<target name="any-module" depends="init">
+ <fail unless="module.name" message="use -Dmodule.name=... to define"/>
<antcall target="build-module">
<param name="module.name" value="${module.name}"/>
</antcall>
</target>
<target name="any-module-all" depends="init">
+ <fail unless="module.name" message="use -Dmodule.name=... to define"/>
<antcall target="build-module-all">
<param name="module.name" value="${module.name}"/>
</antcall>
</target>
<target name="any-product" depends="init">
+ <fail unless="product.name" message="use -Dproduct.name=... to define"/>
<antcall target="build-product">
<param name="product.name" value="${product.name}"/>
</antcall>