Browse Source

* the check for 1.0->1.1 was the wrong way around. asw kept appearing.
Fixed.

marco 22 years ago
parent
commit
f5951d174c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      utils/fpcm/fpcmake.ini

+ 4 - 4
utils/fpcm/fpcmake.ini

@@ -981,11 +981,11 @@ ASNAME=$(BINUTILSPREFIX)as
 LDNAME=$(BINUTILSPREFIX)ld
 ARNAME=$(BINUTILSPREFIX)ar
 RCNAME=$(BINUTILSPREFIX)rc
-ifeq ($(findstring 1.0.,$(FPC_VERSION)),)
+ifneq ($(findstring 1.0.,$(FPC_VERSION)),)
 ifeq ($(OS_TARGET),win32)
-ASNAME=asw
-LDNAME=ldw
-ARNAME=arw
+ASNAME=as
+LDNAME=ld
+ARNAME=ar
 endif
 endif