Changeset 5896


Ignore:
Timestamp:
07/06/09 23:34:56 (3 years ago)
Author:
ryan52
Message:

add a BEGIN block to check for Locale::Msgfmt if building from SVN. this may be too evil or break something, feel free to revert.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Padre/Makefile.PL

    r5884 r5896  
    1010 
    1111 
    12  
     12BEGIN { 
     13  if(author_context) { 
     14    if(!eval("use Locale::Msgfmt 0.12; 1;")) { 
     15      die("Install Locale::Msgfmt version 0.12 or higher to build from SVN"); 
     16    } 
     17  } 
     18} 
    1319 
    1420 
     
    142148 
    143149install_script 'script/padre'; 
    144 install_share_with_mofiles; # developer has to install Locale::Msgfmt 0.10 
     150install_share_with_mofiles; 
    145151 
    146152 
Note: See TracChangeset for help on using the changeset viewer.