diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2012-10-09 19:13:20 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2012-10-09 19:13:20 +0200 |
commit | ab78594d091c8be7e942ff77d7937550261db6c7 (patch) | |
tree | 9d322cb1157efc74bc5f2834e3d69a081d68ef9e /driver/Makefile | |
parent | 31477a2d3ea7aed871b9dcc87c8a157c747bfae8 (diff) | |
parent | 047cd8feb375de9528dd627e25961863acf4e10a (diff) | |
download | pcitool-ab78594d091c8be7e942ff77d7937550261db6c7.tar.gz pcitool-ab78594d091c8be7e942ff77d7937550261db6c7.tar.bz2 pcitool-ab78594d091c8be7e942ff77d7937550261db6c7.tar.xz pcitool-ab78594d091c8be7e942ff77d7937550261db6c7.zip |
Merge fixes to build system
Diffstat (limited to 'driver/Makefile')
-rw-r--r-- | driver/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/Makefile b/driver/Makefile index ac4a14c..92fa913 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 | awk 'BEGIN { FPAT = "([^[:space:]]*)|(\\\\([^)]+\\\\))" } { print $$3 }'` ;\ + GCC_VERSION=`$(CC) --version | head -n 1 | tr ' ' '\n' | 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` ;\ @@ -20,7 +20,7 @@ default: echo "No compiler of $$GCC_MAJOR series is installed" ;\ exit 1 ;\ fi ;\ - GCC_VERSION=`$$CC --version | head -n 1 | awk 'BEGIN { FPAT = "([^[:space:]]*)|(\\\\([^)]+\\\\))" } { print $$3 }'` ;\ + GCC_VERSION=`$$CC --version | head -n 1 | tr ' ' '\n' | tail -n 1` ;\ if [ $$KERNEL_GCC_VERSION != $$GCC_VERSION ]; then \ echo "The $$GCC_VERSION of $$GCC_MAJOR series is installed" ;\ exit 1 ;\ |