udev: Fixed create_nodes.sh to not chown symlinks, and changed to print nodes includi...
[opensde-package-nopast.git] / games / frozen-bubble / create-server-dependancies.patch
blobdf313d6eb50270f8b00fe7841f9361d60da4a391
1 # --- SDE-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
4 # Filename: package/.../frozen-bubble/create-server-dependancies.patch
5 # Copyright (C) 2007 The OpenSDE Project
7 # More information can be found in the files COPYING and README.
9 # This patch file is dual-licensed. It is available under the license the
10 # patched project is licensed under, as long as it is an OpenSource license
11 # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
12 # of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 # --- SDE-COPYRIGHT-NOTE-END ---
17 diff -ru frozen-bubble-2.1.0.org/server/Makefile frozen-bubble-2.1.0/server/Makefile
18 --- frozen-bubble-2.1.0.org/server/Makefile 2006-11-12 20:56:02.000000000 +0100
19 +++ frozen-bubble-2.1.0/server/Makefile 2007-04-15 14:05:40.000000000 +0200
20 @@ -25,7 +25,10 @@
21 install fb-server $(DESTDIR)$(LIBDIR)/frozen-bubble
23 .depend:
24 - $(CPP) $(CFLAGS) $(CPPFLAGS) -M $(ALLSRC) > .depend
25 + rm -f .depend
26 + for src in $(ALLSRC); do \
27 + $(CPP) $(CFLAGS) $(CPPFLAGS) -M $$src >> .depend; \
28 + done
30 ifeq (.depend,$(wildcard .depend))
31 include .depend