Files
xgalaga__/reproducible.patch
Ferdinand Thiessen 78fcf0ab23 Accepting request 498584 from home:bmwiedemann:branches:games
Add reproducible.patch to sort input files to make build reproducible
  (boo#1041090)

OBS-URL: https://build.opensuse.org/request/show/498584
OBS-URL: https://build.opensuse.org/package/show/games/xgalaga++?expand=0&rev=4
2017-05-30 13:18:33 +00:00

14 lines
471 B
Diff

Index: xgalaga++-0.8.4/Makefile
===================================================================
--- xgalaga++-0.8.4.orig/Makefile
+++ xgalaga++-0.8.4/Makefile
@@ -124,7 +124,7 @@ CXXOPTS = $(GOAL_OPTS) $(COMPILE_OPTS) $
LDOPTS = $(GOAL_OPTS) $(LNK_LIBS)
# source files in this project
-sources := $(wildcard $(srcdir)/*.$(SOURCE_SUFFIX))
+sources := $(sort $(wildcard $(srcdir)/*.$(SOURCE_SUFFIX)))
# object files in this project
objs := $(notdir $(sources))