~ubuntu-branches/ubuntu/wily/parrot/wily-proposed

« back to all changes in this revision

Viewing changes to lib/Parrot/Configure/Compiler.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont
  • Date: 2014-04-26 08:41:44 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20140426084144-ycocevtjth7nij5s
Tags: 6.3.0-1
ImportedĀ UpstreamĀ versionĀ 6.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2001-2012, Parrot Foundation.
 
1
# Copyright (C) 2001-2014, Parrot Foundation.
2
2
 
3
3
=head1 NAME
4
4
 
453
453
    }
454
454
 
455
455
    if ( $options{comment_type} ) {
456
 
        my @comment = ( 'ex: set ro:',
 
456
        my @comment = ( 'ex: set ro: -*- buffer-read-only:t -*-',
457
457
            'DO NOT EDIT THIS FILE',
458
458
            'Generated by ' . __PACKAGE__ . " from $source" );
459
459
 
765
765
 
766
766
Adds $path to F<MANIFEST_configure.generated>.
767
767
 
768
 
Deprecated, there is no MANIFEST_configure.generated anymore.
769
 
Replaced by add_to_generated().
 
768
Deprecated, there is no F<MANIFEST_configure.generated> anymore.
 
769
Replaced by C<add_to_generated()>.
770
770
 
771
771
=back
772
772
 
776
776
    my $conf = shift;
777
777
    my $target = shift;
778
778
    if ( $conf->{active_configuration} ) {
779
 
        my $generated_log = 'MANIFEST_configure.generated'; # TODO: MANIFEST.generated
 
779
        warn "append_configure_log() is DEPRECATED and ignored. Use add_to_generated() instead";
 
780
 
 
781
        my $generated_log = 'MANIFEST_configure.generated';
780
782
        open my $GEN, '>>', $generated_log
781
783
            or die "Can't open $generated_log for appending: $!";
782
784
        print $GEN "$target\n";