summaryrefslogtreecommitdiffstats
path: root/remote/modules
diff options
context:
space:
mode:
authorManuel Schneider2014-07-10 14:00:41 +0200
committerManuel Schneider2014-07-10 14:00:41 +0200
commita815d11a8c4669c17f9d895d6e36ce3ccbed7321 (patch)
tree82f529e1286fc128822e3c9e194cb5f8e8e9f710 /remote/modules
parent[Kernel] Fix wrong git variables (diff)
downloadtm-scripts-a815d11a8c4669c17f9d895d6e36ce3ccbed7321.tar.gz
tm-scripts-a815d11a8c4669c17f9d895d6e36ce3ccbed7321.tar.xz
tm-scripts-a815d11a8c4669c17f9d895d6e36ce3ccbed7321.zip
[pvs2] Adjusted module.build to build in /opt/openslx/bin
Diffstat (limited to 'remote/modules')
-rw-r--r--remote/modules/pvs2/module.build8
1 files changed, 2 insertions, 6 deletions
diff --git a/remote/modules/pvs2/module.build b/remote/modules/pvs2/module.build
index edcb49b0..9189d7f3 100644
--- a/remote/modules/pvs2/module.build
+++ b/remote/modules/pvs2/module.build
@@ -7,8 +7,7 @@ fetch_source() {
build() {
local SRCDIR="${MODULE_DIR}/src/"
- local BUILDDIR="${MODULE_DIR}/src/build"
- local DESTDIR="$MODULE_BUILD_DIR/opt/openslx/pvs2"
+ local DESTDIR="$MODULE_BUILD_DIR/opt/openslx/bin"
# first activate qt 4
activate_qt 4
@@ -16,13 +15,10 @@ build() {
mkdir -p "$DESTDIR"
cd "$DESTDIR" || perror "Could not cd to $DESTDIR!"
- mkdir "$BUILDDIR"
- cd "$BUILDDIR"
pinfo "Running cmake"
- cmake .. || perror "'cmake $SRCDIR' failed."
+ cmake "$SRCDIR" || perror "'cmake $SRCDIR' failed."
pinfo "Running make"
make || perror "'make' failed."
- mv pvsmgr pvsclient "$DESTDIR"
cd "$MODULE_DIR" > /dev/null
}
post_copy() {