X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/projects.git/blobdiff_plain/ede7ea996ee0d38c82d41652bf2fb2a264aaf934..5430e52c52a1918b8b337c5ad2b9982a83097a7d:/tools/make/configure diff --git a/tools/make/configure b/tools/make/configure index e9770fa..a92ecbd 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 -L src -name $paket.preinst) +files="$files $(find -L src -name $paket.postinst)" +files="$files $(find -L src -name $paket.prerm)" +files="$files $(find -L src -name $paket.postrm)" +for file in $files +do + ln -sf $file . +done # create generic make.pre, if not existing if [ ! -f make.pre ] @@ -127,6 +130,11 @@ then project = $paket COPY = ./$paket.cp MAKE_PRE + if [ -n "$ARCH" ] + then + echo "arch = $ARCH" >>make.pre + echo "_arch = _${ARCH}" >>make.pre + fi echo "make.pre written." fi