File icedtea-web-1.4.2-softkiller-link.patch of Package icedtea-web.openSUSE_13.1_Update
From: mvyskocil@suse.com Subject: Put linker flag on the end of command line With original order, binutils 2.24 with --as-needed flag will Index: icedtea-web-1.4.2/tests/softkiller/Makefile =================================================================== --- icedtea-web-1.4.2.orig/tests/softkiller/Makefile +++ icedtea-web-1.4.2/tests/softkiller/Makefile @@ -2,7 +2,7 @@ # (this function does not exist in C89/ANSI C) softkiller: softkiller.c - $(CC) -Wall -pedantic -std=c99 -o $@ -lX11 $< + $(CC) -Wall -pedantic -std=c99 -o $@ $< -lX11 clean: rm softkiller