Bug 175441 - ksh scripts no longer works
Summary: ksh scripts no longer works
Keywords:
Status: CLOSED NOTABUG
Alias: None
Product: Fedora
Classification: Fedora
Component: ksh
Version: rawhide
Hardware: All
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Karsten Hopp
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2005-12-10 18:24 UTC by Deji Akingunola
Modified: 2007-11-30 22:11 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2005-12-12 03:14:04 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)

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.


Note You need to log in before you can comment on or make changes to this bug.