Bugfixes for AmigaOS
Norbert Pueschel [Tue, 21 Jan 1997 23:13:54 +0000 (00:13 +0100)]
Subject: AmigaOS patch (removal)

p5p-msgid: <77724660@Armageddon.meb.uni-bonn.de>
private-msgid: <77724691@Armageddon.meb.uni-bonn.de>

hints/amigaos.sh
lib/File/Basename.pm

index 8328c8a..6c00d76 100644 (file)
@@ -9,10 +9,6 @@ firstmakefile='GNUmakefile'
 ccflags='-DAMIGAOS -mstackextend'
 optimize='-O2 -fomit-frame-pointer'
 
-cppminus=' '
-cpprun='cpp'
-cppstdin='cpp'
-
 usenm='y'
 usemymalloc='n'
 usevfork='true'
index 7cbc658..dd7cdcf 100644 (file)
@@ -167,6 +167,7 @@ sub fileparse {
   }
   elsif ($fstype =~ /^AmigaOS/i) {
     ($dirpath,$basename) = ($fullname =~ /(.*[:\/])?(.*)/);
+    $dirpath = './' unless $dirpath;
   }
   elsif ($fstype !~ /^VMS/i) {  # default to Unix
     ($dirpath,$basename) = ($fullname =~ m#^(.*/)?(.*)#);