summaryrefslogtreecommitdiffstats
path: root/core/modules/speedcheck
diff options
context:
space:
mode:
authorSimon Rettberg2018-10-11 15:07:26 +0200
committerSimon Rettberg2018-10-11 15:07:26 +0200
commit9e24033f9769cc90026aa8df1e88193976351da4 (patch)
treea887a7711a3d0cb01b5b3aed105015dd02291097 /core/modules/speedcheck
parent[redsocks] Disable env vars for now as we cannot use ip range in NO_PROXY (diff)
downloadmltk-9e24033f9769cc90026aa8df1e88193976351da4.tar.gz
mltk-9e24033f9769cc90026aa8df1e88193976351da4.tar.xz
mltk-9e24033f9769cc90026aa8df1e88193976351da4.zip
[speedcheck] Remove defunct helper call
Diffstat (limited to 'core/modules/speedcheck')
-rw-r--r--core/modules/speedcheck/module.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/modules/speedcheck/module.build b/core/modules/speedcheck/module.build
index 6c7bd807..d306f23f 100644
--- a/core/modules/speedcheck/module.build
+++ b/core/modules/speedcheck/module.build
@@ -1,7 +1,7 @@
#!/bin/bash
fetch_source() {
- git clone "${REQUIRED_GIT}" "${MODULE_WORK_DIR}/src"
+ git clone "${REQUIRED_GIT}" "${MODULE_WORK_DIR}/src" || perror "Could not clone $REQUIRED_GIT"
}
build() {
@@ -11,8 +11,6 @@ build() {
cd "${MODULE_BUILD_DIR}/${REQUIRED_PREFIX}"
pinfo "Running cmake"
- # use qt4-dev (in case eg. qt4 and 5 are installed)
- activate_qt 4
cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed."
make || perror "'make' failed."