mirror of the now-defunct rocklinux.org
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.

66 lines
2.3 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/sysvinit/sysvinit.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./src/Makefile.orig Mon May 6 11:10:51 2002
  20. +++ ./src/Makefile Mon May 6 11:12:55 2002
  21. @@ -14,12 +14,8 @@
  22. STATIC =
  23. # For Debian we do not build all programs, otherwise we do.
  24. -ifeq ($(DEBIAN),)
  25. -PROGS = init halt shutdown killall5 runlevel sulogin utmpdump \
  26. +PROGS = init halt shutdown killall5 runlevel sulogin \
  27. last mesg wall
  28. -else
  29. -PROGS = init halt shutdown killall5 runlevel sulogin last mesg
  30. -endif
  31. BIN_OWNER = root
  32. BIN_GROUP = root
  33. @@ -46,9 +42,6 @@
  34. mesg: mesg.o
  35. $(CC) $(LDFLAGS) -o $@ mesg.o
  36. -utmpdump: utmpdump.o
  37. - $(CC) $(LDFLAGS) -o $@ utmpdump.o
  38. -
  39. runlevel: runlevel.o
  40. $(CC) $(LDFLAGS) -o $@ runlevel.o
  41. @@ -88,9 +81,7 @@
  42. $(INSTALL) -m 755 halt init killall5 sulogin \
  43. runlevel shutdown $(ROOT)/sbin
  44. # These are not installed by default
  45. -ifeq ($(DEBIAN),)
  46. - $(INSTALL) -m 555 utmpdump wall $(ROOT)/usr/bin
  47. -endif
  48. + $(INSTALL) -m 555 wall $(ROOT)/usr/bin
  49. # $(INSTALL) -m 755 etc/initscript.sample $(ROOT)/etc
  50. $(INSTALL) -m 755 mesg last $(ROOT)/usr/bin
  51. cd $(ROOT)/sbin; ln -sf halt reboot; chown $(BIN_COMBO) reboot
  52. @@ -101,9 +92,7 @@
  53. $(INSTALL) -m 644 initreq.h $(ROOT)/usr/include
  54. $(INSTALL) -m 644 ../man/*.8 $(ROOT)$(MANDIR)/man8
  55. $(INSTALL) -m 644 ../man/*.5 $(ROOT)$(MANDIR)/man5
  56. -ifeq ($(DEBIAN),)
  57. $(INSTALL) -m 644 ../man/wall.1 $(ROOT)$(MANDIR)/man1
  58. -endif
  59. $(INSTALL) -m 644 ../man/last.1 ../man/lastb.1 ../man/mesg.1 \
  60. $(ROOT)$(MANDIR)/man1
  61. #