Ticket #735: inst_files.patch

File inst_files.patch, 1.2 KB (added by gerd, 13 years ago)

patch for tools/dev/install_files.pl and tools/dev/install_dev_files.pl

  • tools/dev/install_files.pl

    old new  
    133133        transform => sub { 
    134134            my($filehash) = @_; 
    135135            $filehash->{Dest} =~ s/^include//; 
    136             $filehash->{DestDirs} = [$parrotdir]; 
    137136            return($filehash); 
    138137        }, 
    139138    }, 
     
    157156            # libdir as it is typically done with automake installed packages. 
    158157            # If there is a use case to make this configurable we'll add a 
    159158            # seperate --pkgconfigdir option. 
    160             $filehash->{DestDirs} = ['pkgconfig', $parrotdir]; 
     159            $filehash->{DestDirs} = ['pkgconfig']; 
    161160            return($filehash); 
    162161        }, 
    163162    }, 
  • tools/dev/install_dev_files.pl

    old new  
    124124            my($filehash) = @_; 
    125125            $filehash->{Dest} =~ s/^src//; # strip off leading src/ dir 
    126126            $filehash->{Dest} =~ s/^include//; 
    127             $filehash->{DestDirs} = [$parrotdir]; 
    128127            return($filehash); 
    129128        }, 
    130129    },