Skip to content

Commit

Permalink
do_autogen.sh: add -j flag to enable java stuff
Browse files Browse the repository at this point in the history
Signed-off-by: Sage Weil <[email protected]>
Signed-off-by: Noah Watkins <[email protected]>
  • Loading branch information
liewegas authored and dotnwat committed Oct 19, 2012
1 parent 9feb4af commit 4a0398d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion do_autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ do_autogen.sh: make a ceph build by running autogen, etc.
-p google profiler
-O <level> optimize
-n use libnss
-j with java
EOF
}
Expand All @@ -30,7 +31,7 @@ debug_level=0
verbose=0
profile=0
CONFIGURE_FLAGS=""
while getopts "d:e:hHTPpnvO:" flag
while getopts "d:e:hHTPjpnvO:" flag
do
case $flag in
d) debug_level=$OPTARG;;
Expand All @@ -49,6 +50,8 @@ do

T) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --without-tcmalloc";;

j) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-cephfs-java";;

v) verbose=1;;

e) encode_dump=$OPTARG;;
Expand Down

0 comments on commit 4a0398d

Please sign in to comment.