diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-09-04 11:04:30 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-09-04 11:04:30 +0100 |
commit | 354c724e8ab74f150e14800acc80d505949161f5 (patch) | |
tree | 42fd4401ebe97f5a765397d0ff33ce50b50ad349 /hints | |
parent | 46c3340ed6f3bbae3f80607438da0310e52a687a (diff) | |
download | perl-354c724e8ab74f150e14800acc80d505949161f5.tar.gz |
OS/2 hadn't been updated to cope with the ext/ restructuring.
I don't have OS/2, so I can't test this, but the code in Configure will assume
flat directories, because ext/File-Glob is present, and hence not search
recursively and not find the OS/2 extensions if they are copied into ext/OS2/*
I believe that without this change OS/2 will not have been building since the
change to flattened ext. This change may not be sufficient to get OS/2
building again, but it is in the right direction.
Diffstat (limited to 'hints')
-rw-r--r-- | hints/os2.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/hints/os2.sh b/hints/os2.sh index 8c8ef21bb2..6309b198fc 100644 --- a/hints/os2.sh +++ b/hints/os2.sh @@ -456,11 +456,7 @@ fi cd ./os2/OS2 -if ! test -d ../../ext/OS2 ; then - mkdir ../../ext/OS2 -fi - -cp -rfu * ../../ext/OS2/ +cp -rfu * ../../ext/ # Install tests: |