- Timestamp:
- 11/04/08 21:18:49 (2 months ago)
- Files:
-
- 1 modified
-
src/perl6/ETOOMUCHTIME (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/perl6/ETOOMUCHTIME
r22882 r22883 25 25 WARNING 26 26 27 # add a sanity check tomake sure STD.pm is correctly built27 #sanity check: make sure STD.pm is correctly built 28 28 unless(-r 'lex') { 29 29 die "Could not find 'lex' directory. Maybe you forgot to 'make'\n"; … … 31 31 unless(-r 'STD.pmc') { 32 32 die "Could not find 'STD.pmc'. Maybe your forgot to 'make'\n"; 33 } 34 35 #sanity check: make sure unicode will work with your locale 36 unless($ENV{LANG} =~ /\.UTF-8$/) { 37 die "Unicode will not work. Please set your LANG environment variable.\n" . 38 "(e.g. 'export LANG=en_US.UTF-8' in your ~/.bashrc)"; 33 39 } 34 40
