From 7a1ee9d53d9b40515f4a717627a94f78da44d54d Mon Sep 17 00:00:00 2001 From: Jo Shields Date: Tue, 24 Apr 2018 16:40:34 -0400 Subject: [PATCH] Add a message to say what AOT is up to (cherry picked from commit d743d587d1f5a8c39fe5ce0dc005d439c09d56f0) Former-commit-id: f1fd8049754926932349f92cbca49760ac247b42 --- debian/postinst-monoaot | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/postinst-monoaot b/debian/postinst-monoaot index 36168faf06..3a1db249d5 100644 --- a/debian/postinst-monoaot +++ b/debian/postinst-monoaot @@ -1,6 +1,7 @@ if [ "$1" = "configure" ] then MONOARCH=`mono --version | grep Architecture | sed 's/.*: //' | sed 's/el,.*//'` + echo "Mono precompiling #FILE# for ${MONOARCH}..." mkdir -p /usr/lib/mono/aot-cache/${MONOARCH}/ /usr/bin/mono --aot=outfile=/usr/lib/mono/aot-cache/${MONOARCH}/`basename #FILE#.so` -O=all #FILE# > /dev/null 2>&1 || true fi