Bug 175441

Summary: ksh scripts no longer works
Product: [Fedora] Fedora Reporter: Deji Akingunola <dakingun>
Component: kshAssignee: Karsten Hopp <karsten>
Status: CLOSED NOTABUG QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: rawhide   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2005-12-12 03:14:04 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Deji Akingunola 2005-12-10 18:24:08 UTC
Description of problem: ksh scripts no longer works as they used to do in FC4.
Here is a simple test case that works with bash but fails with ksh on recent
rawhide install (works with FC4's ksh too) 
On rawhide with ksh;
[armnlib@rhema2 ~]$ cat test
#!/bin/ksh

echo $PWD
 . test2
$F90 -v
[armnlib@rhema2 ~]$ cat test2
#!/bin/ksh

export F90=ifort
[armnlib@rhema2 ~]$ ./test
/home/armnlib
./test[4]: .: test2: cannot open [No such file or directory]
[armnlib@rhema2 ~]$

On rawhide with bash;
[armnlib@rhema2 ~]$ cat test
#!/bin/bash

echo $PWD
 . test2
$F90 -v
[armnlib@rhema2 ~]$ cat test2
#!/bin/bash

export F90=ifort
[armnlib@rhema2 ~]$ ./test
/home/armnlib
Version 9.0
[armnlib@rhema2 ~]$


Version-Release number of selected component (if applicable):ksh-20050202-3.i386.rpm


How reproducible: always


Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Deji Akingunola 2005-12-12 03:14:04 UTC
Oops, sorry for the noise, I had forgiven to put '.' in my path as I used to do
on those systems where it works. Closing.