Changeset 35696


Ignore:
Timestamp:
2021-10-24T18:00:08+13:00 (3 years ago)
Author:
davidb
Message:

Fixed incorrect less-than test: had done LEQ went it should have been LSS; added an echo statement to make it clearly as to what is happening

Location:
main/trunk/greenstone2/common-src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/common-src/indexers/winMake.bat

    r35666 r35696  
    5353    cd packages\windows\iconv
    5454    set ICONVZIP=iconv-VS14-PLUS.zip   
    55     if %VISUAL_STUDIO_VERSION% LEQ 14.0 set ICONVZIP=iconv-PRE-VS14.zip
     55    if %VISUAL_STUDIO_VERSION% LSS 14.0 set ICONVZIP=iconv-PRE-VS14.zip
     56    echo Selected iconvzip: %ICONVZIP%
    5657    if NOT EXIST "iconv" unzip "%ICONVZIP%"
    5758    cd iconv
  • main/trunk/greenstone2/common-src/win32.mak

    r35635 r35696  
    143143    cd indexers\packages\windows\iconv
    144144    @ set ICONVZIP=iconv-VS14-PLUS.zip
    145     @ if $(VISUAL_STUDIO_VERSION) LEQ 14.0 set ICONVZIP=iconv-PRE-VS14.zip 
     145    @ if $(VISUAL_STUDIO_VERSION) LSS 14.0 set ICONVZIP=iconv-PRE-VS14.zip
     146    @ echo Selected iconv to unzip: %ICONVZIP%
    146147    if NOT EXIST "iconv" unzip "%ICONVZIP%"
    147148    cd "$(COMMONHOME)"
Note: See TracChangeset for help on using the changeset viewer.