Skip to content

Commit

Permalink
do_autogen.sh: default to --with-lttng, -L to build without
Browse files Browse the repository at this point in the history
Get developers building with LTTNG by default.

Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
liewegas committed Feb 2, 2015
1 parent de3b5c4 commit f40ee8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions do_autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ die() {
debug_level=0
verbose=0
profile=0
CONFIGURE_FLAGS="--disable-static"
while getopts "d:e:hHrTPJjpcvO:" flag
CONFIGURE_FLAGS="--disable-static --with-lttng"
while getopts "d:e:hHrTPJljpcvO:" flag
do
case $flag in
d) debug_level=$OPTARG;;
Expand All @@ -59,6 +59,8 @@ do

J) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --with-jemalloc";;

L) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --without-lttng";;

*)
echo
usage
Expand Down

0 comments on commit f40ee8c

Please sign in to comment.