diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-12-29 14:56:20 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-12-29 14:56:20 +0000 |
commit | 400a9f3504f597680cfd8c775dcf9a2cd9077c69 (patch) | |
tree | d504dbc0dcb1d06cffffdf89ea177f07faab4412 | |
parent | 57ff11bcab4a2f9663a16308db96b32fb6ccd9b7 (diff) | |
download | perl-MDK-Common-400a9f3504f597680cfd8c775dcf9a2cd9077c69.tar perl-MDK-Common-400a9f3504f597680cfd8c775dcf9a2cd9077c69.tar.gz perl-MDK-Common-400a9f3504f597680cfd8c775dcf9a2cd9077c69.tar.bz2 perl-MDK-Common-400a9f3504f597680cfd8c775dcf9a2cd9077c69.tar.xz perl-MDK-Common-400a9f3504f597680cfd8c775dcf9a2cd9077c69.zip |
Hopefully that's the latest fix to be really really sure to load syscall constants
-rw-r--r-- | MDK/Common/System.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MDK/Common/System.pm b/MDK/Common/System.pm index 04993d7..c1008dd 100644 --- a/MDK/Common/System.pm +++ b/MDK/Common/System.pm @@ -188,6 +188,9 @@ L<MDK::Common> use MDK::Common::Math; use MDK::Common::File; + +#- force loading of syscall.ph into this namespace +delete @INC{qw(syscall.ph bits/syscall.ph sys/syscall.ph asm/unistd.ph)}; require 'syscall.ph'; use Exporter; |