~ubuntu-branches/ubuntu/intrepid/net-snmp/intrepid-updates

« back to all changes in this revision

Viewing changes to perl/make-perl-makefiles

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant
  • Date: 2006-11-28 12:29:34 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20061128122934-82xxzy2zcvypnvy7
Tags: 5.2.3-4ubuntu1
* Merge from debian unstable, remaining changes:
  - remove stop links from rc0 and rc6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/perl
2
2
 
 
3
 
3
4
open(I, "Makefile.subs.pl");
4
5
@stuff = <I>;
5
6
 
15
16
    print O "# common subroutines -- DO NOT EDIT.\n";
16
17
    print O "# They are imported from the Makefile.subs.pl file\n";
17
18
    print O @stuff;
 
19
    close(I);
 
20
    close(O);
18
21
    rename($i,"$i.bak");
19
22
    rename("$i.new", "$i");
20
 
    close(I);
21
 
    close(O);
22
23
}