| author | Krzysztof Daniel | 2012-01-04 05:26:25 (EST) |
|---|---|---|
| committer | Alexander Kurtakov | 2012-01-04 10:17:48 (EST) |
| commit | 90afd93ab5f0d085229b81971e5391107df0ef42 (patch) (side-by-side diff) | |
| tree | 987ffef838d08e3b9905959957c4566938069229 | |
| parent | e729b15a0d941570aa2a222c003b907f1ecb7569 (diff) | |
| download | org.eclipse.linuxtools.eclipse-build-90afd93ab5f0d085229b81971e5391107df0ef42.zip org.eclipse.linuxtools.eclipse-build-90afd93ab5f0d085229b81971e5391107df0ef42.tar.gz org.eclipse.linuxtools.eclipse-build-90afd93ab5f0d085229b81971e5391107df0ef42.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 3e7e4a3..6d180e9 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"> |

