diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:05:12 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-09-23 14:05:12 +0200 |
commit | 1db91d83b0d0311c07d8f96023e850efdb44f7eb (patch) | |
tree | 9e580418a1f4fd9dd727f7a93e73dfdfd3336034 /helpers | |
parent | ed5bb2e1870d68a8d6318933d9fe6ca2f1d9069c (diff) | |
download | vyos-live-build-1db91d83b0d0311c07d8f96023e850efdb44f7eb.tar.gz vyos-live-build-1db91d83b0d0311c07d8f96023e850efdb44f7eb.zip |
Do not create symlinks on usb-hdd images.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index 7145043d5..35d6b6b55 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -420,7 +420,10 @@ do ln -s ${LH_DISTRIBUTION} binary/dists/${DISTRIBUTION} done -ln -s . binary/debian +if [ "${LH_BINARY_IMAGES}" != "usb-hdd" ] +then + ln -s . binary/debian +fi # Creating stage file Create_stagefile .stage/binary_debian-installer |