Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
fix case sensitive path
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed Feb 19, 2009
1 parent bb7a040 commit 87b3260
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 24 deletions.
8 changes: 4 additions & 4 deletions src/WMLScript.pir
Expand Up @@ -5,10 +5,10 @@
.loadlib 'wmls_group'
.loadlib 'wmls_ops'

.include 'languages/WMLScript/src/wmlsstdlibs.pir'
.include 'languages/WMLScript/src/stdlibs.pir'
.include 'languages/WMLScript/src/script.pir'
.include 'languages/WMLScript/src/opcode.pir'
.include 'languages/wmlscript/src/wmlsstdlibs.pir'
.include 'languages/wmlscript/src/stdlibs.pir'
.include 'languages/wmlscript/src/script.pir'
.include 'languages/wmlscript/src/opcode.pir'


# Local Variables:
Expand Down
2 changes: 1 addition & 1 deletion src/script.pir
Expand Up @@ -104,7 +104,7 @@

$P0 = get_hll_global '@stdlibs'
unless null $P0 goto L1
load_bytecode 'languages/WMLScript/src/WMLScript.pbc'
load_bytecode 'languages/wmlscript/src/WMLScript.pbc'
L1:
PIRCODE

Expand Down
16 changes: 8 additions & 8 deletions src/wmlsstdlibs.pir
Expand Up @@ -9,13 +9,13 @@ See "WMLScript Standard Libraries Specification".

=over 4

=item * Lang : F<languages/WMLScript/runtime/wmlslang.pir>
=item * Lang : F<languages/wmlscript/runtime/wmlslang.pir>

=item * Float : F<languages/WMLScript/runtime/wmlsfloat.pir>
=item * Float : F<languages/wmlscript/runtime/wmlsfloat.pir>

=item * String : F<languages/WMLScript/runtime/wmlsstring.pir>
=item * String : F<languages/wmlscript/runtime/wmlsstring.pir>

=item * Console : F<languages/WMLScript/runtime/wmlsconsole.pir>
=item * Console : F<languages/wmlscript/runtime/wmlsconsole.pir>

=back

Expand All @@ -27,10 +27,10 @@ See "WMLScript Standard Libraries Specification".

.sub '__onload' :load :anon
# print "__onload (wmlsstdlibs.pir)\n"
load_bytecode 'languages/WMLScript/runtime/wmlslang.pbc'
load_bytecode 'languages/WMLScript/runtime/wmlsfloat.pbc'
load_bytecode 'languages/WMLScript/runtime/wmlsstring.pbc'
load_bytecode 'languages/WMLScript/runtime/wmlsconsole.pbc'
load_bytecode 'languages/wmlscript/runtime/wmlslang.pbc'
load_bytecode 'languages/wmlscript/runtime/wmlsfloat.pbc'
load_bytecode 'languages/wmlscript/runtime/wmlsstring.pbc'
load_bytecode 'languages/wmlscript/runtime/wmlsconsole.pbc'

new $P0, 'Hash'
$P1 = getLang()
Expand Down
2 changes: 1 addition & 1 deletion t/Parrot/Test/WMLScript.pm
Expand Up @@ -66,7 +66,7 @@ foreach my $func ( keys %language_test_map ) {

# "wmlsc $cflags ${lang_fn}",
# "$self->{parrot} languages/WMLScript/wmls2pir.pir ${bin_fn}",
"$self->{parrot} languages/WMLScript/wmlsi.pir ${bin_fn} $function $params",
"$self->{parrot} languages/wmlscript/wmlsi.pir ${bin_fn} $function $params",
);

# STDERR is written into same output file
Expand Down
8 changes: 4 additions & 4 deletions t/pragmas.t
Expand Up @@ -35,7 +35,7 @@ Hello World!
OUT

language_output_is( 'WMLScript', <<'CODE', <<'OUT', 'use url' );
use url OtherScript "languages/WMLScript/t/pragmas_1.wmlsc";
use url OtherScript "languages/wmlscript/t/pragmas_1.wmlsc";
extern function main()
{
Expand All @@ -46,7 +46,7 @@ Hello World!
OUT

language_output_like( 'WMLScript', <<'CODE', <<'OUT', 'unable to load' );
use url OtherScript "languages/WMLScript/t/pragmas_x.wmlsc";
use url OtherScript "languages/wmlscript/t/pragmas_x.wmlsc";
extern function main()
{
Expand All @@ -57,7 +57,7 @@ CODE
OUT

language_output_like( 'WMLScript', <<'CODE', <<'OUT', 'verification failed' );
use url OtherScript "languages/WMLScript/t/pragmas_1.out";
use url OtherScript "languages/wmlscript/t/pragmas_1.out";
extern function main()
{
Expand All @@ -68,7 +68,7 @@ CODE
OUT

language_output_like( 'WMLScript', <<'CODE', <<'OUT', 'external function not found' );
use url OtherScript "languages/WMLScript/t/pragmas_1.wmlsc";
use url OtherScript "languages/wmlscript/t/pragmas_1.wmlsc";
extern function main()
{
Expand Down
4 changes: 2 additions & 2 deletions t/runtime.t
Expand Up @@ -24,7 +24,7 @@ pir_output_is( << 'CODE', << 'OUTPUT', 'WMLScript.pbc' );
.loadlib 'wmls_ops'
.sub '_init' :anon
load_bytecode 'languages/WMLScript/src/WMLScript.pbc'
load_bytecode 'languages/wmlscript/src/WMLScript.pbc'
.end
.sub 'function0' :anon
Expand Down Expand Up @@ -61,7 +61,7 @@ pir_output_is( << 'CODE', << 'OUTPUT', 'alternate way' );
.loadlib 'wmls_ops'
.sub '_init' :anon
load_bytecode 'languages/WMLScript/src/wmlsstdlibs.pir'
load_bytecode 'languages/wmlscript/src/wmlsstdlibs.pir'
.end
.sub 'function0' :anon
Expand Down
2 changes: 1 addition & 1 deletion wmls2pbc.pir
Expand Up @@ -23,7 +23,7 @@ wmlsd, wmls2pir, wmlsi

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/WMLScript/src/WMLScript.pbc'
load_bytecode 'languages/wmlscript/src/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down
2 changes: 1 addition & 1 deletion wmls2pir.pir
Expand Up @@ -23,7 +23,7 @@ wmlsd, wmls2pbc, wmlsi

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/WMLScript/src/WMLScript.pbc'
load_bytecode 'languages/wmlscript/src/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down
2 changes: 1 addition & 1 deletion wmlsd.pir
Expand Up @@ -23,7 +23,7 @@ wmls2pir, wmls2pbc, wmlsi

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/WMLScript/src/WMLScript.pbc'
load_bytecode 'languages/wmlscript/src/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down
2 changes: 1 addition & 1 deletion wmlsi.pir
Expand Up @@ -24,7 +24,7 @@ wmlsd, wmls2pir, wmls2pbc

.sub 'main' :main
.param pmc argv
load_bytecode 'languages/WMLScript/src/WMLScript.pbc'
load_bytecode 'languages/wmlscript/src/WMLScript.pbc'
.local int argc
.local string progname
.local string filename
Expand Down

0 comments on commit 87b3260

Please sign in to comment.