#!/bin/bash #Framework, welches ein komplettes Linux System aus den Sourcen erstellt #dieses Framework wird im CVS Repository #:pserver:cvs.rainmaker-mm.de/RMM/cvs zur Verfügung gestellt # #Lage dieser Datei im Archiv: $Source$ # #(c) Rainmaker MultiMedia OHG #This program is free software; you can redistribute it and/or #modify ist 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. # #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. #See the GNU General Public License for more details. # #You should have received a copy of the GNU General Public License #along with this program; if not write to the Free Software Foundation, #Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # #Beschreibung: #postinstall fuer freetype, erstes package, das unter /usr/X11R7 #installiert # #Aufrufparameter: #keine # #Letzte Änderung von: $Author$ #Datum der letzten Änderung: $Date$ #Version der Datei: $Revision$ # #$Log$ #Revision 1.2 2006/08/30 18:57:43 kueller #Anpassungen an 32/64 Bit umgebung # #Revision 1.1.1.1 2006/05/03 13:02:35 kueller #neu fuer x11r7 noetig # # # SYSCONF=`grep "/usr/X11" /etc/ld.so.conf` if [ ! "$SYSCONF" ]; then echo "/usr/X11R7/lib" >>/etc/ld.so.conf if [ -d /lib64 ]; then echo "/usr/X11R7/lib64" >>/etc/ld.so.conf fi fi