X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/projects.git/blobdiff_plain/196cba883cc73f800321841cc0143224f8efe796..9f900ca37096790daab2fd817144badd826c2708:/tools/make/configure diff --git a/tools/make/configure b/tools/make/configure index e9770fa..6d8a67f 100755 --- a/tools/make/configure +++ b/tools/make/configure @@ -112,12 +112,15 @@ else echo " this file is necessary for any package production." fi -# check for postinst -postinst=$(find -L src -name $paket.postinst) -if [ -n "$postinst" ] -then - ln -sf $postinst . -fi +# check for installation scripts +files=$(find src -name $paket.preinst) +files="$files $(find src -name $paket.postinst)" +files="$files $(find src -name $paket.prerm)" +files="$files $(find src -name $paket.postrm)" +for file in $files +do + ln -sf $file . +done # create generic make.pre, if not existing if [ ! -f make.pre ]