aboutsummaryrefslogtreecommitdiffstats
path: root/lib_symlinks
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@gmail.com>2018-08-04 09:51:47 +0200
committerGuillaume Rousse <guillomovitch@gmail.com>2018-08-04 09:51:47 +0200
commitabb9b4d0d4dac36b438a40e8368d8861871809ad (patch)
treebf0f7a1ba5fd4bdafafea7d47b2adaef784ebec9 /lib_symlinks
parent815e6b02548575161d485ebe71ea96912f51ea5f (diff)
downloadspec-helper-abb9b4d0d4dac36b438a40e8368d8861871809ad.tar
spec-helper-abb9b4d0d4dac36b438a40e8368d8861871809ad.tar.gz
spec-helper-abb9b4d0d4dac36b438a40e8368d8861871809ad.tar.bz2
spec-helper-abb9b4d0d4dac36b438a40e8368d8861871809ad.tar.xz
spec-helper-abb9b4d0d4dac36b438a40e8368d8861871809ad.zip
a bit more consistency in various file headers
Diffstat (limited to 'lib_symlinks')
-rwxr-xr-xlib_symlinks12
1 files changed, 1 insertions, 11 deletions
diff --git a/lib_symlinks b/lib_symlinks
index 74df12b..225b3ec 100755
--- a/lib_symlinks
+++ b/lib_symlinks
@@ -1,17 +1,9 @@
#!/bin/sh
-#---------------------------------------------------------------
-# Project : Linux-Mandrake
-# Module : spec-helper
-# File : lib_symlinks
-# Version : $Id: lib_symlinks 12354 2006-05-18 15:38:44Z othauvin $
-# Author : Frederic Lepied
-# Created On : Tue Nov 7 08:33:05 2000
-# Description : Run ldconfig to create symlinks to libraries.
+# Run ldconfig to create symlinks to libraries.
#
# Copyright (C) 2000 by Frederic Lepied <flepied@mandrakesoft.com>
# Redistribution of this file is permitted under the terms of the GNU
# Public License (GPL)
-#---------------------------------------------------------------
if [ -z "$RPM_BUILD_ROOT" ]; then
exit 0
@@ -25,5 +17,3 @@ libs=`find $RPM_BUILD_ROOT -type d \
if [ -n "$libs" -o -n "$EXTRA_LIBS_TO_SYMLINK" ]; then
/sbin/ldconfig -n -N $libs $EXTRA_LIBS_TO_SYMLINK
fi
-
-# lib_symlinks ends here