From: jbeulich Date: Fri, 17 Jul 2015 07:14:25 +0000 (+0000) Subject: libgcc: fix build with older make X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c780eb05a8618565c2b8e6b71af8165436bedeb8;p=thirdparty%2Fgcc.git libgcc: fix build with older make Make up to 3.80 (documented as minimal permitted version) doesn't support "else if...". 2015-07-17 Jan Beulich * config/t-softfp: Split up "else ifneq". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@225920 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index 13b3a9485576..ac1fbb75be68 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,7 @@ +2015-07-17 Jan Beulich + + * config/t-softfp: Split up "else ifneq". + 2015-07-14 Sandra Loosemore Cesar Philippidis Chung-Lin Tang diff --git a/libgcc/config/t-softfp b/libgcc/config/t-softfp index 0c9673c7bdc6..5f2b11036907 100644 --- a/libgcc/config/t-softfp +++ b/libgcc/config/t-softfp @@ -103,7 +103,8 @@ ifeq ($(enable_shared),yes) fi endif echo '#endif' >> $@ -else ifneq ($(softfp_wrap_start),) +else +ifneq ($(softfp_wrap_start),) softfp_file_list := $(addsuffix .c,$(softfp_func_list)) $(softfp_file_list): @@ -114,6 +115,7 @@ else softfp_file_list := \ $(addsuffix .c,$(addprefix $(srcdir)/soft-fp/,$(softfp_func_list))) endif +endif # Disable missing prototype and type limit warnings. The prototypes # for the functions in the soft-fp files have not been brought across