diff options
author | Darrell Anderson <[email protected]> | 2014-01-15 21:22:44 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2014-01-15 21:22:44 -0600 |
commit | 150ca0beb43a0b861820d8dfae20c7a59d6c9e0c (patch) | |
tree | d80377c5f3553bc451925db9396ce362dfc5434f | |
parent | 90a5ff374c21986a5ee32e066457a1d7d4445770 (diff) | |
download | kdbg-150ca0beb43a0b861820d8dfae20c7a59d6c9e0c.tar.gz kdbg-150ca0beb43a0b861820d8dfae20c7a59d6c9e0c.zip |
Fix 'style assignments are not portable' build message.
-rw-r--r-- | kdbg/testprogs/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kdbg/testprogs/Makefile.am b/kdbg/testprogs/Makefile.am index b5a35f1..ba751b2 100644 --- a/kdbg/testprogs/Makefile.am +++ b/kdbg/testprogs/Makefile.am @@ -8,7 +8,7 @@ AM_CXXFLAGS = -g # Disable optimization to ensure that variables are not hidden by the # compiler -CXXFLAGS:=$(patsubst -O%,,$(CXXFLAGS)) +CXXFLAGS = $(patsubst -O%,,$(CXXFLAGS)) if BUILDTESTPROGS PROGS = \ |