Commit 723a50e0 authored by Navid Nikaein's avatar Navid Nikaein

fix the libconfig setting for ubuntu 14.04

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6128 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent a86bd0f9
...@@ -274,11 +274,13 @@ build_enb(){ ...@@ -274,11 +274,13 @@ build_enb(){
fi fi
fi fi
output=$(check_for_machine_type 2>&1) if [ $UBUNTU_REL = "12.04" ]; then
MACHINE_ARCH=$? output=$(check_for_machine_type 2>&1)
if [ $MACHINE_ARCH -eq 64 ]; then MACHINE_ARCH=$?
SOFTMODEM_DIRECTIVES="$SOFTMODEM_DIRECTIVES LIBCONFIG_LONG=1 " if [ $MACHINE_ARCH -eq 64 ]; then
OAISIM_DIRECTIVES="$OASIM_DIRECTIVES LIBCONFIG_LONG=1 " SOFTMODEM_DIRECTIVES="$SOFTMODEM_DIRECTIVES LIBCONFIG_LONG=1 "
OAISIM_DIRECTIVES="$OASIM_DIRECTIVES LIBCONFIG_LONG=1 "
fi
fi fi
echo_success "SOFTMODEM Compilation directives: $SOFTMODEM_DIRECTIVES" echo_success "SOFTMODEM Compilation directives: $SOFTMODEM_DIRECTIVES"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment