Skip to content

Commit

Permalink
Fix failure to find shared library after installation
Browse files Browse the repository at this point in the history
Precompilation during installation happens in a different location than the one the module is installed to. Resources can deal with this, but stringifying resources spoils this mechanism.
  • Loading branch information
niner authored and jonathanstowe committed Jun 11, 2024
1 parent d769478 commit 756b4c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/FastCGI/NativeCall.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ to use the C<close> method instead.


class FastCGI::NativeCall {
my constant HELPER = %?RESOURCES<libraries/fcgi>.Str;
my constant HELPER = %?RESOURCES<libraries/fcgi>;

class FCGX_Request is Pointer is repr('CPointer') { }

Expand Down

0 comments on commit 756b4c8

Please sign in to comment.