Changeset 779

Show
Ignore:
Timestamp:
07/26/07 16:37:27 (1 year ago)
Author:
kindlund
Message:

updated code to include install and license files.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • honeyclient/trunk/create_pkg_dir.pl

    r777 r779  
    6565    find({wanted => \&process, no_chdir => 1} ,"$src_path/$path/$module"); 
    6666 
     67    # Copy the LICENSE and INSTALL files. 
     68    my_copy("LICENSE",$pkg_name,1); 
     69    my_copy("INSTALL",$pkg_name,1); 
     70 
    6771    l(''); 
    6872} 
     
    105109}#}}} 
    106110 
     111 
    107112# All of the calls are the same, and I wanted to unclutter the above code 
    108113sub my_copy { #{{{