From: Jordan Justen <jljusten@debian.org>
Date: Wed, 9 Apr 2025 00:50:51 -0700
Subject: libstore/meson: Rename busybox => sandbox_shell

Signed-off-by: Jordan Justen <jljusten@debian.org>
---
 src/libstore/meson.build | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/libstore/meson.build b/src/libstore/meson.build
index 79d9124..5d7d2b6 100644
--- a/src/libstore/meson.build
+++ b/src/libstore/meson.build
@@ -139,11 +139,11 @@ foreach header : [
   generated_headers += gen_header.process(header)
 endforeach
 
-busybox = find_program(get_option('sandbox-shell'), required : false)
+sandbox_shell = find_program(get_option('sandbox-shell'), required : false)
 
 if get_option('embedded-sandbox-shell')
   # This one goes in config.h
-  # The path to busybox is passed as a -D flag when compiling this_library.
+  # The path to sandbox_shell is passed as a -D flag when compiling this_library.
   # This solution is inherited from the old make buildsystem
   # TODO: do this differently?
   configdata.set('HAVE_EMBEDDED_SANDBOX_SHELL', 1)
@@ -156,7 +156,7 @@ if get_option('embedded-sandbox-shell')
       '-e',
       '1/1 "0x%x," "\n"'
     ],
-    input : busybox.full_path(),
+    input : sandbox_shell.full_path(),
     output : 'embedded-sandbox-shell.gen.hh',
     capture : true,
     feed : true,
@@ -400,9 +400,9 @@ if get_option('embedded-sandbox-shell')
   cpp_str_defines += {
     'SANDBOX_SHELL': '__embedded_sandbox_shell__'
   }
-elif busybox.found()
+elif sandbox_shell.found()
   cpp_str_defines += {
-    'SANDBOX_SHELL': busybox.full_path()
+    'SANDBOX_SHELL': sandbox_shell.full_path()
   }
 endif
 
