diff options
author | Moritz Fischer | 2011-07-19 07:21:36 -0700 |
---|---|---|
committer | Johnathan Corgan | 2011-07-19 07:21:36 -0700 |
commit | 7e2b45b89137a3cc2b1cdb066577c323545cfcb7 (patch) | |
tree | 8ea78b182a037feb35cba143bb34238ade36ec1a /volk/gen | |
parent | 4f760496574a79379eff07e3d7cec33592be5b1b (diff) | |
download | gnuradio-7e2b45b89137a3cc2b1cdb066577c323545cfcb7.tar.gz gnuradio-7e2b45b89137a3cc2b1cdb066577c323545cfcb7.tar.bz2 gnuradio-7e2b45b89137a3cc2b1cdb066577c323545cfcb7.zip |
volk: fix whitespace in Python script
Diffstat (limited to 'volk/gen')
-rw-r--r-- | volk/gen/make_makefile_am.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/volk/gen/make_makefile_am.py b/volk/gen/make_makefile_am.py index d700626bb..f843b4413 100644 --- a/volk/gen/make_makefile_am.py +++ b/volk/gen/make_makefile_am.py @@ -77,9 +77,9 @@ noinst_LTLIBRARIES = if archflags_dict[arch] != "none": tempstring += "-" + archflags_dict[arch] + " " - tempstring += "\nnoinst_LTLIBRARIES += libvolk_" + machine_name + ".la " + tempstring += "\nnoinst_LTLIBRARIES += libvolk_" + machine_name + ".la " tempstring += "\nlibvolk_la_LIBADD += libvolk_" + machine_name + ".la\n" - tempstring += "libvolk_la_CPPFLAGS += -DLV_MACHINE_" + machine_name.swapcase() + " \n" + tempstring += "libvolk_la_CPPFLAGS += -DLV_MACHINE_" + machine_name.swapcase() + " \n" tempstring += "endif\n" |