| author | Krzysztof Daniel | 2012-01-04 05:26:25 (EST) |
|---|---|---|
| committer | Sami Wagiaalla | 2012-02-24 15:12:58 (EST) |
| commit | 5226c06ce6c694af86addba36c396d92a48d632c (patch) (side-by-side diff) | |
| tree | 04275a5396b616e7691d810b7f8f93ca93ff66e6 | |
| parent | 80619775eb1eceb8787679807174a85b8eefdfe2 (diff) | |
| download | org.eclipse.linuxtools.eclipse-build-5226c06ce6c694af86addba36c396d92a48d632c.zip org.eclipse.linuxtools.eclipse-build-5226c06ce6c694af86addba36c396d92a48d632c.tar.gz org.eclipse.linuxtools.eclipse-build-5226c06ce6c694af86addba36c396d92a48d632c.tar.bz2 | |
Bug 367727 - Incorrect error message when eclipse-build version does not match the source tarbals
Changed error messaged to display which file actually is missing and what can be done about that.
| -rw-r--r-- | eclipse-build/build.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclipse-build/build.xml b/eclipse-build/build.xml index 10caf71..63a1ab6 100644 --- a/eclipse-build/build.xml +++ b/eclipse-build/build.xml @@ -158,19 +158,19 @@ </target> <target name="fetch" unless="sdkSourceTarballPresent"> - <fail message="SDK source tarball is not present. Please either download a file such as eclipse-3.6.1-src.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/ or generate one by running ./buildSDKSource.sh." /> + <fail message="SDK source tarball eclipse-${label}-src.tar.bz2 is not present. Please either download a file such as eclipse-${label}-src.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/, generate one by running ./buildSDKSource.sh or update build.properties file to reflect your tarball version." /> </target> <target name="fetchTestSources" unless="testsSourcePresent"> - <fail message="SDK tests source tarball is not present. Please either download a file such as eclipse-sdktests-3.6.1-sources.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/ or generate one by running ./buildSDKSource.sh." /> + <fail message="SDK tests source tarball eclipse-sdktests-${label}-src.tar.bz2 is not present. Please either download a file such as eclipse-${label}-src.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/, generate one by running ./buildSDKSource.sh or correct build.properties file to reflect your tarball version." /> </target> <target name="fetchTestScripts" unless="testsScriptsPresent"> - <fail message="Scripts for the SDK tests tarball is not present. Please either download a file such as eclipse-sdktests-3.6.1-scripts.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/ or generate one by running ./buildSDKSource.sh." /> + <fail message="Scripts for the SDK tests tarball eclipse-sdktests-${label}-scripts.tar.bz2 are not present. Please either download a file such as eclipse-sdktests-${label}-scripts.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/, generate one by running ./buildSDKSource.sh or correct build.properties file to reflect your tarball version." /> </target> <target name="fetchEMF" unless="emfSourceTarballPresent"> - <fail message="EMF source tarball is not present. Please either download a file such as emfFore4-2.7.0-src.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/ or generate one by running ./builde4AndEMFSources.sh." /> + <fail message="EMF source tarball ${emfTarball} is not present. Please either download a file such as emfFore4-2.7.0-src.tar.bz2 from http://download.eclipse.org/technology/linuxtools/eclipse-build/, generate one by running ./builde4AndEMFSources.sh or correct the build.properties file to reflect your EMF source tarball version." /> </target> <target name="extractBuildXmls" if="scriptsPresent"> |

