Remove missing DT_SONAME warning from the toast

Bug: http://b/27613086
Change-Id: I9410f07dbde002d936319516313b27f9794dd597
diff --git a/linker/linker.cpp b/linker/linker.cpp
index 86b1093..3c7637f 100644
--- a/linker/linker.cpp
+++ b/linker/linker.cpp
@@ -3829,7 +3829,7 @@
     soname_ = basename(realpath_.c_str());
     DL_WARN("%s: is missing DT_SONAME will use basename as a replacement: \"%s\"",
         get_realpath(), soname_);
-    add_dlwarning(get_realpath(), "missing DT_SONAME");
+    // Don't call add_dlwarning because a missing DT_SONAME isn't important enough to show in the UI
   }
   return true;
 }