Fixed building mac os x installers without FCl dir

git-svn-id: trunk@10704 -
This commit is contained in:
vincents 2007-03-04 13:38:55 +00:00
parent 6cb5107662
commit 92e8a40294
2 changed files with 7 additions and 1 deletions

View File

@ -100,8 +100,11 @@ ln -sf ../lib/fpc/$FPCVERSION/$PPCARCH $INSTALLDIR/bin/$PPCARCH
# install for use by lazarus
cd fpcsrc
make compiler_install rtl_install fcl_install packages_install utils_install \
make compiler_install rtl_install packages_install utils_install \
INSTALL_PREFIX=$INSTALLFPCDIR PP=$COMPILER FPCMAKE=$FPCBUILDDIR/fpcsrc/utils/fpcm/fpcmake
if [ -d $FPCBUILDDIR/fpcsrc/fcl ]; then
make fcl_install INSTALL_PREFIX=$INSTALLFPCDIR PP=$COMPILER FPCMAKE=$FPCBUILDDIR/fpcsrc/utils/fpcm/fpcmake
fi
make -C compiler installsymlink PP=$COMPILER INSTALL_PREFIX=$INSTALLFPCDIR

View File

@ -62,6 +62,9 @@ fi
# copy sources
mkdir -p $INSTALLDIR/fpcsrc
$SVN export $FPCSOURCEDIR/rtl $INSTALLDIR/fpcsrc/rtl
if [ -d $FPCSOURCEDIR/fcl ] ; then
$SVN export $FPCSOURCEDIR/fcl $INSTALLDIR/fpcsrc/fcl
fi
$SVN export $FPCSOURCEDIR/fcl $INSTALLDIR/fpcsrc/fcl
$SVN export $FPCSOURCEDIR/packages $INSTALLDIR/fpcsrc/packages