~ubuntu-branches/ubuntu/precise/gnuradio/precise

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/filter/generate_gr_fir_util.py

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/env python
2
2
#
3
 
# Copyright 2003 Free Software Foundation, Inc.
 
3
# Copyright 2003,2009 Free Software Foundation, Inc.
4
4
5
5
# This file is part of GNU Radio
6
6
44
44
 
45
45
def make_gr_fir_util_h ():
46
46
    out = open_and_log_name ('gr_fir_util.h', 'w')
 
47
    if not out:
 
48
        return
47
49
    out.write (copyright)
48
50
 
49
51
    out.write (
142
144
    
143
145
def make_gr_fir_util_cc ():
144
146
    out = open_and_log_name ('gr_fir_util.cc', 'w')
 
147
    if not out:
 
148
        return
145
149
    out.write (copyright)
146
150
    out.write ('''
147
151