summaryrefslogtreecommitdiff
path: root/examples/hooks/all_binary_live-helper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hooks/all_binary_live-helper.sh')
-rwxr-xr-xexamples/hooks/all_binary_live-helper.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/hooks/all_binary_live-helper.sh b/examples/hooks/all_binary_live-helper.sh
index 219193b..b60f4a3 100755
--- a/examples/hooks/all_binary_live-helper.sh
+++ b/examples/hooks/all_binary_live-helper.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# This is a hook for live-helper(7) to install live-helper and its config into
+# This is a hook for live-build(7) to install live-build and its config into
# the binary image.
# To enable it, copy or symlink this hook into your config/chroot_local-hooks
# directory.
@@ -11,14 +11,14 @@ mkdir -p "${DIRECTORY}"
cp -a config "${DIRECTORY}"
-if [ -e live-helper ]
+if [ -e live-build ]
then
- cp -a live-helper "${DIRECTORY}"
+ cp -a live-build "${DIRECTORY}"
else
- mkdir -p "${DIRECTORY}"/live-helper/bin
- cp -a /usr/bin/lh* "${DIRECTORY}"/live-helper/bin
+ mkdir -p "${DIRECTORY}"/live-build/bin
+ cp -a /usr/bin/lh* "${DIRECTORY}"/live-build/bin
- cp -a /usr/share/live/build "${DIRECTORY}"/live-helper/share
+ cp -a /usr/share/live/build "${DIRECTORY}"/live-build/share
- cp -a /usr/share/doc/live-build "${DIRECTORY}"/live-helper/doc
+ cp -a /usr/share/doc/live-build "${DIRECTORY}"/live-build/doc
fi