Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marco Perronet
rbf-trace
Commits
3302d106
Commit
3302d106
authored
Nov 12, 2021
by
Marco Perronet
Browse files
Add check for exit status
parent
2aa9c1dd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/events_generation/binary_parser/lib/build_libs.sh
View file @
3302d106
...
...
@@ -14,12 +14,24 @@ CUSTOM_PATH=$(pwd)/build_output
cd
libtraceevent
INSTALL_PATH
=
"
$CUSTOM_PATH
"
../trace-cmd/make-trace-cmd.sh
install
if
((
"
$?
"
!=
0
))
;
then
echo
"Build error in libtraceevent."
exit
1
fi
cd
../libtracefs
INSTALL_PATH
=
"
$CUSTOM_PATH
"
../trace-cmd/make-trace-cmd.sh
install
if
((
"
$?
"
!=
0
))
;
then
echo
"Build error in libtracefs."
exit
1
fi
cd
../trace-cmd
INSTALL_PATH
=
"
$CUSTOM_PATH
"
./make-trace-cmd.sh install_libs
if
((
"
$?
"
!=
0
))
;
then
echo
"Build error in libtracecmd."
exit
1
fi
cd
..
make
-C
libtraceevent clean
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment