diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2014-04-09 15:45:50 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2014-04-09 15:45:50 +0200 |
commit | 7339d1a748bdbc7a41abd456238a5a66aac64c53 (patch) | |
tree | 0c4f768d318cd156184abfef49d6a46ec6a3266d | |
parent | 2a483fb01a9a60287d6c555a6cdf61213021c3cb (diff) | |
download | ipecamera-7339d1a748bdbc7a41abd456238a5a66aac64c53.tar.gz ipecamera-7339d1a748bdbc7a41abd456238a5a66aac64c53.tar.bz2 ipecamera-7339d1a748bdbc7a41abd456238a5a66aac64c53.tar.xz ipecamera-7339d1a748bdbc7a41abd456238a5a66aac64c53.zip |
Fix detection of gcc version on Ubuntu (by Uros)
-rw-r--r-- | driver/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/Makefile b/driver/Makefile index 13c3310..e353228 100644 --- a/driver/Makefile +++ b/driver/Makefile @@ -10,7 +10,7 @@ EXTRA_CFLAGS += -I$(M)/.. default: @KERNEL_GCC_VERSION=`cat /proc/version | head -n1 | cut -d " " -f 7` ;\ - GCC_VERSION=`$(CC) --version | head -n 1 | tr ' ' '\n' | grep -e "[0-9]\+\.[0-9]" | head -n 1` ;\ + GCC_VERSION=`$(CC) --version | head -n 1 | tr ' ' '\n' | grep -e "[0-9]\+\.[0-9]" | tail -n 1` ;\ if [ $$KERNEL_GCC_VERSION != $$GCC_VERSION ]; then \ echo "Kernel is compiled with gcc $$KERNEL_GCC_VERSION, but you are now using $$GCC_VERSION" ;\ GCC_MAJOR=`echo $$KERNEL_GCC_VERSION | cut -d "." -f 1-2` ;\ |