diff options
Diffstat (limited to 'build/build.xml')
-rw-r--r-- | build/build.xml | 3 |
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> |