diff options
Diffstat (limited to 'games/freedoko/files/patch-ui!Makefile')
-rw-r--r-- | games/freedoko/files/patch-ui!Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/games/freedoko/files/patch-ui!Makefile b/games/freedoko/files/patch-ui!Makefile new file mode 100644 index 000000000000..52a13e3e2f71 --- /dev/null +++ b/games/freedoko/files/patch-ui!Makefile @@ -0,0 +1,25 @@ +--- ui/Makefile~ Mon Mar 8 12:13:18 2004 ++++ ui/Makefile Thu Jun 3 17:18:20 2004 +@@ -14,18 +14,18 @@ + directories : always + ifeq ($(SHELLTYPE), sh) + @for d in $(DIRECTORIES); do \ +- make -C $$d || exit; \ ++ $(MAKE) -C $$d || exit; \ + done + endif + ifeq ($(SHELLTYPE), COMMAND.COM) + ifeq ($(USE_UI_TEXT), true) +- make -C text ++ $(MAKE) -C text + endif + ifeq ($(USE_UI_GTK), true) +- make -C gtk ++ $(MAKE) -C gtk + endif + ifeq ($(USE_UI_GTKMM), true) +- make -C gtkmm ++ $(MAKE) -C gtkmm + endif + endif + |