diff options
author | Rob Savoye | 2010-11-23 17:19:59 -0700 |
---|---|---|
committer | Rob Savoye | 2010-11-23 17:19:59 -0700 |
commit | 609aa205e5eabb7c47acc7141c7bcd66e9656fc6 (patch) | |
tree | 07ea29f7f89f93a09f372cdf8a4d21455681887b | |
parent | 1e0faf29d41c6af754e3ceec30d217ce69452cd1 (diff) | |
download | gnuradio-609aa205e5eabb7c47acc7141c7bcd66e9656fc6.tar.gz gnuradio-609aa205e5eabb7c47acc7141c7bcd66e9656fc6.tar.bz2 gnuradio-609aa205e5eabb7c47acc7141c7bcd66e9656fc6.zip |
don't nuke directories from the dist tarball, only files.
-rw-r--r-- | Makefile.common | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile.common b/Makefile.common index 182b29ffa..3ebfb9d5c 100644 --- a/Makefile.common +++ b/Makefile.common @@ -150,12 +150,15 @@ gnuradio/%.scm : %.i # or the directories listed in no_dist_dirs (set in Makefile.swig) dist-hook: - @for dir in $(no_dist_dirs); do \ - echo $(RM) -fr $(distdir)/$$dir; \ - $(RM) -fr $(distdir)/$$dir; \ - done; @for file in $(no_dist_files); do \ echo $(RM) $(distdir)/$$file; \ $(RM) $(distdir)/$$file; \ - done; + done +# @for dir in $(no_dist_dirs); do \ +# if test ! -e $(distdir)/$$dir/std_complex.i; then \ +# echo $(RM) -fr $(distdir)/$$dir; \ +# $(RM) -fr $(distdir)/$$dir; \ +# echo "FIXME1: $(distdir)/$$dir"; \ +# fi; \ +# done; |