|
From: <xue...@us...> - 2003-07-20 12:36:36
|
Update of /cvsroot/popfile/windows
In directory sc8-pr-cvs1:/tmp/cvs-serv17584
Modified Files:
pfi-library.nsh
Log Message:
Fix the simplified version of un.GetCorpusPath.
Index: pfi-library.nsh
===================================================================
RCS file: /cvsroot/popfile/windows/pfi-library.nsh,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** pfi-library.nsh 19 Jul 2003 13:52:31 -0000 1.3
--- pfi-library.nsh 20 Jul 2003 12:36:33 -0000 1.4
***************
*** 280,291 ****
Pop ${L_CORPUS}
! StrCpy ${L_TEMP} "$OUTDIR" ; Save current working directory
; Ensure relative paths are handled properly (${L_SOURCE} holds path to 'popfile.cfg' file)
! StrCpy "$OUTDIR" "${L_SOURCE}"
GetFullPathName ${L_RESULT} "${L_CORPUS}"
! StrCpy "$OUTDIR" ${L_TEMP} ; Restore current working directory
; If 'corpus' path parameter was not valid, GetFullPathName returns ""
--- 280,291 ----
Pop ${L_CORPUS}
! GetFullPathName ${L_TEMP} ".\"
; Ensure relative paths are handled properly (${L_SOURCE} holds path to 'popfile.cfg' file)
! SetOutPath "${L_SOURCE}"
GetFullPathName ${L_RESULT} "${L_CORPUS}"
! SetOutPath "${L_TEMP}"
; If 'corpus' path parameter was not valid, GetFullPathName returns ""
|