comparison Makefile.in @ 4631:da2359935a39

Makefile.in: Fix spelling of --enable-fortran-int64 in error message.
author John W. Eaton <jwe@octave.org>
date Wed, 21 Mar 2018 12:53:10 -0400
parents de2eedecd6ba
children b959f5d524f8
comparison
equal deleted inserted replaced
4630:dd217cbcc0a2 4631:da2359935a39
63 ## FIXME: this will need to change when Octave 4.4 is released as stable. 63 ## FIXME: this will need to change when Octave 4.4 is released as stable.
64 stable_64_mismatch = false 64 stable_64_mismatch = false
65 ifeq ($(OCTAVE_TARGET),stable-octave) 65 ifeq ($(OCTAVE_TARGET),stable-octave)
66 ifeq ($(ENABLE_64),yes) 66 ifeq ($(ENABLE_64),yes)
67 ifeq ($(ENABLE_FORTRAN_INT64),no) 67 ifeq ($(ENABLE_FORTRAN_INT64),no)
68 $(error --enable-64 and --enable-fortran-int-64 must match for stable-octave) 68 $(error --enable-64 and --enable-fortran-int64 must match for stable-octave)
69 endif 69 endif
70 else 70 else
71 ifeq ($(ENABLE_FORTRAN_INT64),yes) 71 ifeq ($(ENABLE_FORTRAN_INT64),yes)
72 $(error --enable-64 and --enable-fortran-int-64 must match for stable-octave) 72 $(error --enable-64 and --enable-fortran-int64 must match for stable-octave)
73 endif 73 endif
74 endif 74 endif
75 endif 75 endif
76 76
77 77