udev: Fixed create_nodes.sh to not chown symlinks, and changed to print nodes includi...
[opensde-package-nopast.git] / games / koules / mkdirhier.patch
blob57e091de1862f1953e7ca2642bfbd92f200c39fd
1 # --- SDE-COPYRIGHT-NOTE-BEGIN ---
2 # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
4 # Filename: package/.../koules/mkdirhier.patch
5 # Copyright (C) 2004 - 2006 The T2 SDE 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 We do not have this legacy mkdirhier anymore ...
19 - Rene Rebe <rene@exactcode.de>
21 --- ./Imakefile.vanilla 2005-11-04 15:57:54.000000000 +0100
22 +++ ./Imakefile 2005-11-04 16:00:00.000000000 +0100
23 @@ -98,16 +98,16 @@
24 @echo "Koules directory is " $(KOULESDIR)
26 @echo "Instalin man page to " $(MANDIR)
27 - @mkdirhier $(MANDIR)
28 + @mkdir -p $(MANDIR)
29 $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR);
31 @echo "Creating directory " $(KOULESDIR)
32 - @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi
33 + @if [ ! -d $(KOULESDIR) ]; then mkdir -p $(KOULESDIR); fi
35 @if [ "$(INSTALLSOUND)" = "True" ]; \
36 then \
37 echo "Creating directory " $(SOUNDDIR); \
38 - if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \
39 + if [ ! -d $(SOUNDDIR) ]; then mkdir -p $(SOUNDDIR); fi; \
40 echo "Copying sound server to directory " $(SOUNDDIR); \
41 $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \
42 echo "Copying sound files into directory " $(SOUNDDIR); \
43 @@ -126,16 +126,16 @@
44 @echo "Koules directory is " $(KOULESDIR)
46 @echo "Instalin man page to " $(MANDIR)
47 - @mkdirhier $(MANDIR)
48 + @mkdir -p $(MANDIR)
49 $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR);
51 @echo "Creating directory " $(KOULESDIR)
52 - @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi
53 + @if [ ! -d $(KOULESDIR) ]; then mkdir -p $(KOULESDIR); fi
55 @if [ "$(INSTALLSOUND)" = "True" ]; \
56 then \
57 echo "Creating directory " $(SOUNDDIR); \
58 - if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \
59 + if [ ! -d $(SOUNDDIR) ]; then mkdir -p $(SOUNDDIR); fi; \
60 echo "Copying sound server to directory " $(SOUNDDIR); \
61 $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \
62 echo "Copying sound files into directory " $(SOUNDDIR); \
63 @@ -156,16 +156,16 @@
64 @echo "Koules directory is " $(KOULESDIR)
66 @echo "Instalin man page to " $(MANDIR)
67 - @mkdirhier $(MANDIR)
68 + @mkdir -p $(MANDIR)
69 $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR);
71 @echo "Creating directory " $(KOULESDIR)
72 - @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi
73 + @if [ ! -d $(KOULESDIR) ]; then mkdir -p $(KOULESDIR); fi
75 @if [ "$(INSTALLSOUND)" = "True" ]; \
76 then \
77 echo "Creating directory " $(SOUNDDIR); \
78 - if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \
79 + if [ ! -d $(SOUNDDIR) ]; then mkdir -p $(SOUNDDIR); fi; \
80 echo "Copying sound server to directory " $(SOUNDDIR); \
81 $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \
82 echo "Copying sound files into directory " $(SOUNDDIR); \