search for: cpsrc

Displaying 1 result from an estimated 1 matches for "cpsrc".

Did you mean: cpsr
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...file | 2 +- win64/Makefile | 2 +- 16 files changed, 35 insertions(+), 35 deletions(-) diff --git a/codepage/Makefile b/codepage/Makefile index 18a590f..af5258a 100644 --- a/codepage/Makefile +++ b/codepage/Makefile @@ -1,6 +1,6 @@ VPATH = $(SRC) PERL = perl -CPSRC = $(wildcard $(SRC)/*.txt) +CPSRC = $(sort $(wildcard $(SRC)/*.txt)) CPOBJ = $(notdir $(CPSRC)) GENFILES = $(patsubst %.txt,%.cp,$(CPOBJ)) diff --git a/com32/cmenu/Makefile b/com32/cmenu/Makefile index 6bb5231..b81b68e 100644 --- a/com32/cmenu/Makefile +++ b/com32/cmenu/Makefile @@ -32,8 +32...