Commit 3a722cea authored by thomasl's avatar thomasl

replace = by := when it is constant


git-svn-id: http://svn.eurecom.fr/openair4G/trunk@6203 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent 31521f01
......@@ -11,8 +11,8 @@
include $(OPENAIR_HOME)/common/utils/Makefile.inc
KERNEL_ARCH=$(shell echo `uname -m`)
SET_X64=$(shell if [ $(KERNEL_ARCH) = 'x86_64' ]; then echo true ; fi)
KERNEL_ARCH:=$(shell echo `uname -m`)
SET_X64:=$(shell if [ $(KERNEL_ARCH) = 'x86_64' ]; then echo true ; fi)
ifdef RTAI
# Get the RTAI variables
CCC = $(shell rtai-config --cc)
......
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