diff options
author | Marco Amadori <amadorim@vdavda.com> | 2008-10-20 11:28:03 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:43 +0100 |
commit | 4dc5ffe7f378946c7d23a979135ea6b54ef04509 (patch) | |
tree | 2bc69ddd6802c5329938884826ef392ef2f21958 /helpers | |
parent | 871190e2c7a97d48f13106e0d6fc0054e1c34bd5 (diff) | |
download | vyos-live-build-4dc5ffe7f378946c7d23a979135ea6b54ef04509.tar.gz vyos-live-build-4dc5ffe7f378946c7d23a979135ea6b54ef04509.zip |
Ensure lh_binary_debian-installer includes local debs (Closes: #502877)
* fixed some path references to the "config" directory.
Diffstat (limited to 'helpers')
-rwxr-xr-x | helpers/lh_binary_debian-installer | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helpers/lh_binary_debian-installer b/helpers/lh_binary_debian-installer index e536f202a..9b9a5b990 100755 --- a/helpers/lh_binary_debian-installer +++ b/helpers/lh_binary_debian-installer @@ -478,17 +478,17 @@ then fi # Including local debs - if Find_files ../config/binary_local-debs/*_"${LH_ARCHITECTURE}".deb + if Find_files config/binary_local-debs/*_"${LH_ARCHITECTURE}".deb then - for FILE in ../config/binary_local-debs/*_"${LH_ARCHITECTURE}".deb + for FILE in config/binary_local-debs/*_"${LH_ARCHITECTURE}".deb do Install_file "${FILE}" "binary/pool/main" done fi - if Find_files ../config/binary_local-debs/*_all.deb + if Find_files config/binary_local-debs/*_all.deb then - for FILE in ../config/binary_local-debs/*_all.deb + for FILE in config/binary_local-debs/*_all.deb do Install_file "${FILE}" "binary/pool/main" done |