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.
46 lines
1.8 KiB
46 lines
1.8 KiB
18 years ago
|
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||
|
#
|
||
|
# T2 SDE: package/.../lvm/suffix_for_tools.patch
|
||
|
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
||
|
#
|
||
|
# More information can be found in the files COPYING and README.
|
||
|
#
|
||
|
# This patch file is dual-licensed. It is available under the license the
|
||
|
# patched project is licensed under, as long as it is an OpenSource license
|
||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
|
||
|
# of the GNU General Public License as published by the Free Software
|
||
|
# Foundation; either version 2 of the License, or (at your option) any later
|
||
|
# version.
|
||
|
# --- T2-COPYRIGHT-NOTE-END ---
|
||
|
--- ./tools/Makefile.in.orig 2005-02-18 11:34:25.440484160 -0300
|
||
|
+++ ./tools/Makefile.in 2005-02-18 11:44:34.835841984 -0300
|
||
|
@@ -30,6 +30,7 @@
|
||
|
srcdir = @srcdir@
|
||
|
VPATH = @srcdir@
|
||
|
STATIC_LINK = @STATIC_LINK@
|
||
|
+SUFFIX =
|
||
|
|
||
|
# Link decision (archive or shared library)
|
||
|
# See './configure --help' for info on setting this - default is dynamic
|
||
|
@@ -74,15 +75,15 @@
|
||
|
@echo "*** Installing $(ALL_TARGETS) $(ALL_SCRIPTS) in $(DESTDIR)$(sbindir) ***"
|
||
|
@for f in $(ALL_TARGETS); \
|
||
|
do \
|
||
|
- rm -f $(DESTDIR)$(sbindir)/$$f; \
|
||
|
+ rm -f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
|
||
|
@INSTALL@ -d $(DESTDIR)$(sbindir); \
|
||
|
- @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 -s $$f $(DESTDIR)$(sbindir)/$$f; \
|
||
|
+ @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 -s $$f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
|
||
|
done
|
||
|
@for f in $(ALL_SCRIPTS); \
|
||
|
do \
|
||
|
- rm -f $(DESTDIR)$(sbindir)/$$f; \
|
||
|
+ rm -f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
|
||
|
@INSTALL@ -d $(DESTDIR)$(sbindir); \
|
||
|
- @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 $(srcdir)/$$f $(DESTDIR)$(sbindir)/$$f; \
|
||
|
+ @INSTALL@ -o $(OWNER) -g $(GROUP) -m 555 $(srcdir)/$$f $(DESTDIR)$(sbindir)/$$f$(SUFFIX); \
|
||
|
done
|
||
|
|
||
|
remove-bin: $(ALL_TARGETS) $(ALL_SCRIPTS)
|