search for: 29f1fa6

Displaying 2 results from an estimated 2 matches for "29f1fa6".

Did you mean: 2961f76
2017 Jun 30
4
[PATCH v2 0/4] Allow cross-building of syslinux
Hi together, this is the second version of my cross-compilation patch serie. I'm sending it in the hope to get an honest review, and possibly see the patches integrated upstream. Those patches allow to build syslinux using a toolchain different from the host one by explicitely using the host toolchain for the utilities that are required at build-time / on the build machine. I am using the
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
..._payload \ --defsym obj_$*=0 -BOBJS += $(patsubst payload/%.img,$(BIN)/%.o,$(wildcard payload/*.img)) +BOBJS += $(patsubst payload/%.img,$(BIN)/%.o,$(sort $(wildcard payload/*.img))) # The "allXXXs" targets for each suffix # diff --git a/lzo/Makefile b/lzo/Makefile index 0c5d296..29f1fa6 100644 --- a/lzo/Makefile +++ b/lzo/Makefile @@ -15,7 +15,7 @@ include $(MAKEDIR)/build.mk INCLUDES += -I$(SRC)/include -LIBOBJS = $(patsubst %.c,%.o,$(subst $(SRC)/,,$(wildcard $(SRC)/src/*.c))) +LIBOBJS = $(patsubst %.c,%.o,$(subst $(SRC)/,,$(sort $(wildcard $(SRC)/src/*.c)))) LIB = lzo...