diff options
Diffstat (limited to 'games/freedoko/files/patch-class!Makefile')
-rw-r--r-- | games/freedoko/files/patch-class!Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/games/freedoko/files/patch-class!Makefile b/games/freedoko/files/patch-class!Makefile new file mode 100644 index 000000000000..d050a65ea32b --- /dev/null +++ b/games/freedoko/files/patch-class!Makefile @@ -0,0 +1,20 @@ +--- class/Makefile~ Sun Sep 7 20:33:50 2003 ++++ class/Makefile Thu Jun 3 17:34:01 2004 +@@ -8,14 +8,14 @@ + @for d in *; \ + do if test -d $$d; \ + then if test -e $$d/Makefile; \ +- then make -C $$d; \ ++ then $(MAKE) -C $$d; \ + fi \ + fi \ + done + endif + ifeq ($(SHELLTYPE), COMMAND.COM) +- make -C readconfig +- make -C getopt ++ $(MAKE) -C readconfig ++ $(MAKE) -C getopt + endif + + |