mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-28 09:50:58 +02:00
* Show message about creating fppkg/conf.d directory
git-svn-id: trunk@44279 -
This commit is contained in:
parent
6a1d6ce591
commit
a880367b37
@ -92,7 +92,8 @@ if [ -f "$FPBIN" ] ; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Do not write fppkg configuration when fppkg is not available
|
# Do not write fppkg configuration when fppkg is not available
|
||||||
if ! [ -f "$FPPKGBIN" ] ; then
|
if [ ! -f "$FPPKGBIN" ] ; then
|
||||||
|
echo "No fppkg binary available, not generating fppkg config."
|
||||||
exit
|
exit
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -105,6 +106,7 @@ echo Writing sample configuration file to $defaultfile
|
|||||||
${FPCMKCFGBIN} -p -4 -d "GlobalPrefix=$FPCGLOBALPREFIX" -d "FpcBin=$FPCBIN" -o $defaultfile
|
${FPCMKCFGBIN} -p -4 -d "GlobalPrefix=$FPCGLOBALPREFIX" -d "FpcBin=$FPCBIN" -o $defaultfile
|
||||||
|
|
||||||
# Create (empty) directory for fppkg-configuration files for extensions
|
# Create (empty) directory for fppkg-configuration files for extensions
|
||||||
if ! [ -d "$fppkgconfdir" ] ; then
|
if [ ! -d "$fppkgconfdir" ] ; then
|
||||||
|
echo "Creating fpkkg configuration extensions directory $fppkgconfdir"
|
||||||
mkdir "$fppkgconfdir"
|
mkdir "$fppkgconfdir"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user