diff options
author | Jonathan Bauer | 2018-01-30 10:33:05 +0100 |
---|---|---|
committer | Jonathan Bauer | 2018-01-30 10:33:05 +0100 |
commit | 37d4abab0571b5b123f9a389ef699b3973367ba6 (patch) | |
tree | 49a48409411159e2753ca472c8c7191f2a66f14c /core/modules/beamergui | |
parent | [vbox] cleanup old commented entries (diff) | |
download | mltk-37d4abab0571b5b123f9a389ef699b3973367ba6.tar.gz mltk-37d4abab0571b5b123f9a389ef699b3973367ba6.tar.xz mltk-37d4abab0571b5b123f9a389ef699b3973367ba6.zip |
[beamergui] fix bad error message
Diffstat (limited to 'core/modules/beamergui')
-rw-r--r-- | core/modules/beamergui/module.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/beamergui/module.build b/core/modules/beamergui/module.build index e47758cc..a4735e85 100644 --- a/core/modules/beamergui/module.build +++ b/core/modules/beamergui/module.build @@ -10,7 +10,7 @@ build() { mkdir -p "$MODULE_BUILD_DIR/opt/openslx/bin" cd "${MODULE_BUILD_DIR}/opt/openslx/bin" || perror "Could not cd!" pinfo "Running cmake" - cmake "$SRCDIR" || perror "'$QMAKE' failed (e.g. not installed)." + cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed." pinfo "Running make" make || perror "'make' failed." |