Fix boost build locally

Change I1d00ef561fed7e3ba799969a112ee58b6578ce32 fixed local
compilation of bmcweb, but it is causing failures when attempting to
SRCREV bump.  This should fix the issues during SRCREV bump while still
allowing local builds to succeed.

Tested (Carson):
I was able to locally build bmcweb without having previously installed
any boost libraries.  All unit tests also passed.

meson buildlocal && ninja -C buildlocal test

Change-Id: I8cbb764dc564b84b4adb06ba80cb87b2a2c4701f
Signed-off-by: Ed Tanous <edtanous@google.com>
Signed-off-by: Carson Labrado <clabrado@google.com>
diff --git a/meson.build b/meson.build
index e2754c5..630fac6 100644
--- a/meson.build
+++ b/meson.build
@@ -310,14 +310,7 @@
 boost = dependency(
   'boost',
   modules: [
-    'asio',
-    'beast',
-    'callable_traits',
-    'headers',
-    'process',
-    'type_index',
     'url',
-    'uuid'
     ],
   version : '>=1.83.0',
   required : false,