eal/memory: fix unused SIGBUS handler
[dpdk.git] / examples / distributor / meson.build
index 9fec7f8..9df5992 100644 (file)
@@ -7,10 +7,13 @@
 # DPDK instance, use 'make'
 
 # require the power library
-build = dpdk_conf.has('RTE_LIBRTE_POWER')
+build = dpdk_conf.has('RTE_LIB_POWER')
+if not build
+    subdir_done()
+endif
 
 allow_experimental_apis = true
 deps += ['distributor', 'power']
 sources = files(
-       'main.c'
+        'main.c',
 )