diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-05-26 17:37:34 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-05-26 17:37:34 +0200 |
commit | e75dd3b57c247e650277f26f4f1b5ade3bd0f620 (patch) | |
tree | 895660dd0ea459172c1a55106758a1449c5df975 /functions | |
parent | 364ae8f8d07b2e349f192ecfa02985db783803d0 (diff) | |
download | mkinitcpio-e75dd3b57c247e650277f26f4f1b5ade3bd0f620.tar.gz mkinitcpio-e75dd3b57c247e650277f26f4f1b5ade3bd0f620.tar.xz |
Moved udev hook/install to udev package
Added destination name for add_binary
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@116 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'functions')
-rw-r--r-- | functions | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -155,10 +155,10 @@ add_binary () case "${type}" in *script*) msg " adding '${type}' script, ensure proper interp exists..." - add_file "${bin}" + add_file "${bin}" "${2}" ;; *executable*) - add_file "${bin}" + add_file "${bin}" "${2}" #note, this will also handle 'not a dynamic executable' spit out by # static binaries... the deps will produce nothing for lib in $(ldd ${bin} 2>/dev/null | sed "s|.*=>\(.*\)|\1|"); do |