diff options
author | François Andriot <albator78@libertysurf.fr> | 2019-11-03 10:18:22 +0100 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2019-11-03 11:16:30 +0100 |
commit | 4c50b73e0b3c5f1f360b58f68b9f83d3866323a5 (patch) | |
tree | ba1c909fffec46dca940b31a21acd438d57f40b1 /redhat/genla.sh | |
parent | c3350bda33cd4e47c3d13eb7c9dcea757b2a5ec0 (diff) | |
download | tde-packaging-4c50b73e0b3c5f1f360b58f68b9f83d3866323a5.tar.gz tde-packaging-4c50b73e0b3c5f1f360b58f68b9f83d3866323a5.zip |
RPM: update build scripts
Diffstat (limited to 'redhat/genla.sh')
-rwxr-xr-x | redhat/genla.sh | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/redhat/genla.sh b/redhat/genla.sh deleted file mode 100755 index b909b0601..000000000 --- a/redhat/genla.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/bash - -LIB="$1" -LIBDIR="$(rpm -E %_libdir)" -FILENAME="${LIB}.la" -FILE="${LIBDIR}/${FILENAME}" - -if [ -r "${FILE}" ]; then - echo "Already exists !!! Abort" - exit 1 -fi - -LIBLONG="$(echo ${LIBDIR}/${LIB}.so.*.*)" -LIBSHORT="$(echo ${LIBDIR}/${LIB}.so.?)" - -echo "Library: ${LIBLONG} | ${LIBSHORT}" - - -cat <<EOF >/tmp/$LIB.$$ -# ${FILENAME} - a libtool library file -# Generated by libtool (GNU libtool) 2.4.2 -# -# Please DO NOT delete this file! -# It is necessary for linking the library. - -# The name that we can dlopen(3). -dlname='${LIBSHORT}' - -# Names of this library. -library_names='${LIBLONG} ${LIBSHORT} ${LIB}.so' - -# The name of the static archive. -old_library='${LIB}.a' - -# Linker flags that can not go in dependency_libs. -inherited_linker_flags='' - -# Libraries that this one depends upon. -dependency_libs=' -lm' - -# Names of additional weak libraries provided by this library -weak_library_names='' - -# Version information for ${LIB}. -current=4 -age=2 -revision=0 - -# Is this an already installed library? -installed=yes - -# Should we warn about portability when linking against -modules? -shouldnotlink=no - -# Files to dlopen/dlpreopen -dlopen='' -dlpreopen='' - -# Directory that this library needs to be installed in: -libdir='${LIBDIR}' -EOF - -sudo mv "/tmp/$LIB.$$" "${FILE}" |