OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
3.2 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../koules/mkdirhier.patch
  5. # Copyright (C) 2004 - 2006 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  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. # --- T2-COPYRIGHT-NOTE-END ---
  16. We do not have this legacy mkdirhier anymore ...
  17. - Rene Rebe <rene@exactcode.de>
  18. --- ./Imakefile.vanilla 2005-11-04 15:57:54.000000000 +0100
  19. +++ ./Imakefile 2005-11-04 16:00:00.000000000 +0100
  20. @@ -98,16 +98,16 @@
  21. @echo "Koules directory is " $(KOULESDIR)
  22. @:
  23. @echo "Instalin man page to " $(MANDIR)
  24. - @mkdirhier $(MANDIR)
  25. + @mkdir -p $(MANDIR)
  26. $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR);
  27. @:
  28. @echo "Creating directory " $(KOULESDIR)
  29. - @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi
  30. + @if [ ! -d $(KOULESDIR) ]; then mkdir -p $(KOULESDIR); fi
  31. @:
  32. @if [ "$(INSTALLSOUND)" = "True" ]; \
  33. then \
  34. echo "Creating directory " $(SOUNDDIR); \
  35. - if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \
  36. + if [ ! -d $(SOUNDDIR) ]; then mkdir -p $(SOUNDDIR); fi; \
  37. echo "Copying sound server to directory " $(SOUNDDIR); \
  38. $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \
  39. echo "Copying sound files into directory " $(SOUNDDIR); \
  40. @@ -126,16 +126,16 @@
  41. @echo "Koules directory is " $(KOULESDIR)
  42. @:
  43. @echo "Instalin man page to " $(MANDIR)
  44. - @mkdirhier $(MANDIR)
  45. + @mkdir -p $(MANDIR)
  46. $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR);
  47. @:
  48. @echo "Creating directory " $(KOULESDIR)
  49. - @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi
  50. + @if [ ! -d $(KOULESDIR) ]; then mkdir -p $(KOULESDIR); fi
  51. @:
  52. @if [ "$(INSTALLSOUND)" = "True" ]; \
  53. then \
  54. echo "Creating directory " $(SOUNDDIR); \
  55. - if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \
  56. + if [ ! -d $(SOUNDDIR) ]; then mkdir -p $(SOUNDDIR); fi; \
  57. echo "Copying sound server to directory " $(SOUNDDIR); \
  58. $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \
  59. echo "Copying sound files into directory " $(SOUNDDIR); \
  60. @@ -156,16 +156,16 @@
  61. @echo "Koules directory is " $(KOULESDIR)
  62. @:
  63. @echo "Instalin man page to " $(MANDIR)
  64. - @mkdirhier $(MANDIR)
  65. + @mkdir -p $(MANDIR)
  66. $(INSTALL) -c $(INSTBINFLAGS) xkoules.6 $(MANDIR);
  67. @:
  68. @echo "Creating directory " $(KOULESDIR)
  69. - @if [ ! -d $(KOULESDIR) ]; then mkdirhier $(KOULESDIR); fi
  70. + @if [ ! -d $(KOULESDIR) ]; then mkdir -p $(KOULESDIR); fi
  71. @:
  72. @if [ "$(INSTALLSOUND)" = "True" ]; \
  73. then \
  74. echo "Creating directory " $(SOUNDDIR); \
  75. - if [ ! -d $(SOUNDDIR) ]; then mkdirhier $(SOUNDDIR); fi; \
  76. + if [ ! -d $(SOUNDDIR) ]; then mkdir -p $(SOUNDDIR); fi; \
  77. echo "Copying sound server to directory " $(SOUNDDIR); \
  78. $(INSTALL) -c -s $(INSTBINFLAGS) $(SOUNDSERVER) $(SOUNDDIR); \
  79. echo "Copying sound files into directory " $(SOUNDDIR); \