diff options
author | Johnathan Corgan | 2009-10-22 11:12:42 -0700 |
---|---|---|
committer | Johnathan Corgan | 2009-10-22 11:12:42 -0700 |
commit | 0b9828e8cad48722c22979587db861e1806a7fb7 (patch) | |
tree | b3f4b6db431918a24923f7f669ef9a49a75e1292 /gr-qtgui/src/lib/Makefile.am | |
parent | 8e003a402af2993f978620741fdf195ac9bf7834 (diff) | |
download | gnuradio-0b9828e8cad48722c22979587db861e1806a7fb7.tar.gz gnuradio-0b9828e8cad48722c22979587db861e1806a7fb7.tar.bz2 gnuradio-0b9828e8cad48722c22979587db861e1806a7fb7.zip |
Don't distribute generated files in gr-qtgui
The output of the moc compiler will contain generated paths which are
only valid on the system at compilation time. Instead, let these
get regenerated on the user's system. The moc compiler is part of
libqt4-dev, which is already a build dependency.
Diffstat (limited to 'gr-qtgui/src/lib/Makefile.am')
-rw-r--r-- | gr-qtgui/src/lib/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gr-qtgui/src/lib/Makefile.am b/gr-qtgui/src/lib/Makefile.am index 6c90c31f0..814bee136 100644 --- a/gr-qtgui/src/lib/Makefile.am +++ b/gr-qtgui/src/lib/Makefile.am @@ -112,7 +112,8 @@ include $(top_srcdir)/Makefile.swig # add some of the variables generated inside the Makefile.swig.gen BUILT_SOURCES += \ $(swig_built_sources) - -# Do not distribute the output of SWIG -no_dist_files = $(swig_built_sources) endif + +# Do not distribute built sources, they may contain generated paths +# which are invalid on other systems +no_dist_files = $(BUILT_SOURCES) |