diff --git a/apps/plugins/doom/doom.make b/apps/plugins/doom/doom.make index b9bc1ec06b..0ebdf384a1 100644 --- a/apps/plugins/doom/doom.make +++ b/apps/plugins/doom/doom.make @@ -20,8 +20,8 @@ OTHER_SRC += $(DOOM_SRC) DOOMCFLAGS = $(PLUGINFLAGS) -Wno-strict-prototypes -O2 -fno-strict-aliasing -# Set '-fgnu89-inline' if supported (GCCVER >= 4.1.3, GCCNUM >= 401) -ifeq ($(shell expr $(GCCNUM) \>= 401),1) +# Set '-fgnu89-inline' if supported (GCCVER >= 4.1.3, GCCNUM > 401) +ifeq ($(shell expr $(GCCNUM) \> 401),1) DOOMCFLAGS += -fgnu89-inline endif diff --git a/apps/plugins/mpegplayer/mpegplayer.make b/apps/plugins/mpegplayer/mpegplayer.make index 1f74d6597a..af2156787e 100644 --- a/apps/plugins/mpegplayer/mpegplayer.make +++ b/apps/plugins/mpegplayer/mpegplayer.make @@ -18,8 +18,8 @@ MPEG_OBJ := $(call c2obj, $(MPEG_SRC)) # add source files to OTHER_SRC to get automatic dependencies OTHER_SRC += $(MPEG_SRC) -# Set '-fgnu89-inline' if supported (GCCVER >= 4.1.3, GCCNUM >= 401) -ifeq ($(shell expr $(GCCNUM) \>= 401),1) +# Set '-fgnu89-inline' if supported (GCCVER >= 4.1.3, GCCNUM > 401) +ifeq ($(shell expr $(GCCNUM) \> 401),1) MPEGCFLAGS = $(PLUGINFLAGS) -fgnu89-inline else MPEGCFLAGS = $(PLUGINFLAGS)