summaryrefslogtreecommitdiffstats
path: root/debian/squeeze/applications/tdeio-apt/debian/fixrpath
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2019-01-01 19:50:22 +0100
committerSlávek Banko <slavek.banko@axis.cz>2019-01-01 19:50:22 +0100
commitb2b5086444d674031d5f73ff6560686f36599c84 (patch)
tree704ca6db5549abe06dc7c98d873948765377eb28 /debian/squeeze/applications/tdeio-apt/debian/fixrpath
parent7172f47cba4087d73fcb204bfd23358fbb1b2f5d (diff)
downloadtde-packaging-b2b5086444d674031d5f73ff6560686f36599c84.tar.gz
tde-packaging-b2b5086444d674031d5f73ff6560686f36599c84.zip
DEB tdeio-apt: Switch to cmake.
Removed Ubuntu specific kdedeg_logo. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'debian/squeeze/applications/tdeio-apt/debian/fixrpath')
-rwxr-xr-xdebian/squeeze/applications/tdeio-apt/debian/fixrpath25
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/squeeze/applications/tdeio-apt/debian/fixrpath b/debian/squeeze/applications/tdeio-apt/debian/fixrpath
deleted file mode 100755
index 0ca44359e..000000000
--- a/debian/squeeze/applications/tdeio-apt/debian/fixrpath
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-# $Id: fixrpath,v 1.1 2006/11/19 12:01:24 lpnotfr Exp $
-# libtool -rpath workaround based on a suggestion by Yann Dirson
-# <dirson@debian.org>
-#
-# It is supposed to be inserted in configure.in, but I didn't want
-# to re-run autoconf (since that bloats the Debian diff unnecessarily),
-# so I just patch libtool after running configure. -- Richard Braakman
-# <dark@xs4all.nl>
-#
-# The version of libtool included with LessTif unfortunately insists on
-# linking with -rpath, i.e. hardwiring locations. This is not desirable.
-#
-# The dummy define is improbable enough not to conflict with anything; it is
-# just here to fool libtool by making it believe it gave some useful info to
-# gcc.
-#
-# This will also patch the generated libtool to explicitly
-# link libraries against the libraries they depend on. (particularly libc)
-
-sed < $1/libtool > $1/libtool-2 \
- -e 's/^hardcode_libdir_flag_spec.*$/hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' \
- -e '/^archive_cmds="/s/"$/ \$deplibs"/'
-mv $1/libtool-2 $1/libtool
-chmod 755 $1/libtool