[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: mkoctfile: Problems sometimes during linking of text file
From: |
John W. Eaton |
Subject: |
Re: mkoctfile: Problems sometimes during linking of text file |
Date: |
Thu, 20 Apr 2000 03:22:30 -0500 (CDT) |
On 20-Apr-2000, Stephen Eglen <address@hidden> wrote:
| John's suggestion worked for me, but if it is not universal, perhaps
| the `rm' lines should just be commented out in the mkoctfile along
| with a little note, something like:
|
| ## Uncomment these lines if you get `Text file busy' errors
| ## from ld. This may happen if the .oct file is currently running
| ## while you are trying to recompile it.
| ## $dbg "rm -f $octfile"
| ## rm -f $octfile
OK, but I used the following instead:
## Uncomment the following group of lines if you get `Text file busy'
## errors from ld. This may happen if the .oct file is currently
## running while you are trying to recompile it. We try moving first,
## since on somee systems (HP-UX, maybe others) it is possible to
## rename running programs but not remove them.
## $dbg "mv $octfile $octfile.bak"
## mv $octfile $octfile.bak"
## $dbg "rm -f $octfile.bak"
## rm -f $octfile.bak
Thanks,
jwe
-----------------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.
Octave's home on the web: http://www.che.wisc.edu/octave/octave.html
How to fund new projects: http://www.che.wisc.edu/octave/funding.html
Subscription information: http://www.che.wisc.edu/octave/archive.html
-----------------------------------------------------------------------
- mkoctfile: Problems sometimes during linking of text file, Stephen Eglen, 2000/04/19
- Re: mkoctfile: Problems sometimes during linking of text file, John W. Eaton, 2000/04/20
- Re: mkoctfile: Problems sometimes during linking of text file, Teemu Ikonen, 2000/04/20
- Re: mkoctfile: Problems sometimes during linking of text file, Kai Habel, 2000/04/20
- Re: mkoctfile: Problems sometimes during linking of text file, Stef Pillaert, 2000/04/20
- Re: mkoctfile: Problems sometimes during linking of text file, John W. Eaton, 2000/04/25
- Re: mkoctfile: Problems sometimes during linking of text file, Joao Cardoso, 2000/04/26