diff options
author | Daniel Baumann <daniel@debian.org> | 2012-08-14 19:45:47 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-08-24 11:38:13 +0200 |
commit | 9820490ca645b4e56b82e3ae2811b891875b4774 (patch) | |
tree | 9b32da0bbac57414b054743a67f44fdf0ee0fdf2 /scripts/build/lb_binary | |
parent | dd31503960745337067ec2a1a5914f5a0b8cef81 (diff) | |
download | vyos-live-build-9820490ca645b4e56b82e3ae2811b891875b4774.tar.gz vyos-live-build-9820490ca645b4e56b82e3ae2811b891875b4774.zip |
Switching back to use the more common ${@} instead of ${*}, it's not required in current lb_clean anymore.
Diffstat (limited to 'scripts/build/lb_binary')
-rwxr-xr-x | scripts/build/lb_binary | 100 |
1 files changed, 50 insertions, 50 deletions
diff --git a/scripts/build/lb_binary b/scripts/build/lb_binary index 4a110e5a9..e0e3e47d3 100755 --- a/scripts/build/lb_binary +++ b/scripts/build/lb_binary @@ -35,76 +35,76 @@ Set_defaults Setup_cleanup # Preparing root filesystem -lb binary_chroot ${*} +lb binary_chroot ${@} if [ "${LB_BUILD_WITH_CHROOT}" = "true" ] then # Configuring chroot - lb chroot_devpts install ${*} - lb chroot_proc install ${*} - lb chroot_selinuxfs install ${*} - lb chroot_sysfs install ${*} - lb chroot_hosts install ${*} - lb chroot_resolv install ${*} - lb chroot_hostname install ${*} - lb chroot_sysv-rc install ${*} - lb chroot_upstart install ${*} - lb chroot_apt install-binary ${*} - lb chroot_archives chroot install ${*} + lb chroot_devpts install ${@} + lb chroot_proc install ${@} + lb chroot_selinuxfs install ${@} + lb chroot_sysfs install ${@} + lb chroot_hosts install ${@} + lb chroot_resolv install ${@} + lb chroot_hostname install ${@} + lb chroot_sysv-rc install ${@} + lb chroot_upstart install ${@} + lb chroot_apt install-binary ${@} + lb chroot_archives chroot install ${@} fi # Building root filesystem -lb binary_rootfs ${*} -lb binary_manifest ${*} +lb binary_rootfs ${@} +lb binary_manifest ${@} # Prepare images -lb binary_package-lists ${*} -lb binary_linux-image ${*} -lb binary_debian-installer ${*} -lb binary_memtest ${*} -lb binary_grub ${*} -lb binary_grub2 ${*} -lb binary_syslinux ${*} -lb binary_yaboot ${*} -lb binary_silo ${*} -lb binary_disk ${*} -lb binary_win32-loader ${*} -lb binary_includes ${*} -lb binary_hooks ${*} -lb binary_checksums ${*} +lb binary_package-lists ${@} +lb binary_linux-image ${@} +lb binary_debian-installer ${@} +lb binary_memtest ${@} +lb binary_grub ${@} +lb binary_grub2 ${@} +lb binary_syslinux ${@} +lb binary_yaboot ${@} +lb binary_silo ${@} +lb binary_disk ${@} +lb binary_win32-loader ${@} +lb binary_includes ${@} +lb binary_hooks ${@} +lb binary_checksums ${@} if [ "${LB_BUILD_WITH_CHROOT}" != "true" ] then - lb chroot_devpts install ${*} - lb chroot_proc install ${*} - lb chroot_selinuxfs install ${*} - lb chroot_sysfs install ${*} + lb chroot_devpts install ${@} + lb chroot_proc install ${@} + lb chroot_selinuxfs install ${@} + lb chroot_sysfs install ${@} fi # Building images -lb binary_iso ${*} -lb binary_netboot ${*} -lb binary_tar ${*} -lb binary_hdd ${*} -lb binary_virtual-hdd ${*} +lb binary_iso ${@} +lb binary_netboot ${@} +lb binary_tar ${@} +lb binary_hdd ${@} +lb binary_virtual-hdd ${@} -lb binary_zsync ${*} +lb binary_zsync ${@} if [ "${LB_BUILD_WITH_CHROOT}" = "true" ] then # Deconfiguring chroot rm -f .build/chroot_archives - lb chroot_apt remove ${*} - lb chroot_hostname remove ${*} - lb chroot_resolv remove ${*} - lb chroot_hosts remove ${*} - lb chroot_upstart remove ${*} - lb chroot_sysv-rc remove ${*} - lb chroot_dpkg remove ${*} - lb chroot_debianchroot remove ${*} + lb chroot_apt remove ${@} + lb chroot_hostname remove ${@} + lb chroot_resolv remove ${@} + lb chroot_hosts remove ${@} + lb chroot_upstart remove ${@} + lb chroot_sysv-rc remove ${@} + lb chroot_dpkg remove ${@} + lb chroot_debianchroot remove ${@} fi -lb chroot_sysfs remove ${*} -lb chroot_selinuxfs remove ${*} -lb chroot_proc remove ${*} -lb chroot_devpts remove ${*} +lb chroot_sysfs remove ${@} +lb chroot_selinuxfs remove ${@} +lb chroot_proc remove ${@} +lb chroot_devpts remove ${@} |