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.

45 lines
1.8 KiB

  1. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # T2 SDE: package/.../lvm/suffix_for_tools.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. --- ./tools/Makefile.in.orig 2005-02-18 11:34:25.440484160 -0300
  17. +++ ./tools/Makefile.in 2005-02-18 11:44:34.835841984 -0300
  18. @@ -30,6 +30,7 @@
  19. srcdir = @srcdir@
  20. VPATH = @srcdir@
  21. STATIC_LINK = @STATIC_LINK@
  22. +SUFFIX =
  23. # Link decision (archive or shared library)
  24. # See './configure --help' for info on setting this - default is dynamic
  25. @@ -74,15 +75,15 @@
  26. @echo "*** Installing $(ALL_TARGETS) $(ALL_SCRIPTS) in $(DESTDIR)$(sbindir) ***"
  27. @for f in $(ALL_TARGETS); \
  28. do \
  29. - rm -f $(DESTDIR)$(sbindir)/$$f; \
  30. + rm -f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
  31. @INSTALL@ -d $(DESTDIR)$(sbindir); \
  32. - @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 -s $$f $(DESTDIR)$(sbindir)/$$f; \
  33. + @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 -s $$f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
  34. done
  35. @for f in $(ALL_SCRIPTS); \
  36. do \
  37. - rm -f $(DESTDIR)$(sbindir)/$$f; \
  38. + rm -f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
  39. @INSTALL@ -d $(DESTDIR)$(sbindir); \
  40. - @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 $(srcdir)/$$f $(DESTDIR)$(sbindir)/$$f; \
  41. + @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 $(srcdir)/$$f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
  42. done
  43. remove-bin: $(ALL_TARGETS) $(ALL_SCRIPTS)