summaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-05-26 17:37:34 +0200
committerAaron Griffin <aaron@archlinux.org>2006-05-26 17:37:34 +0200
commite75dd3b57c247e650277f26f4f1b5ade3bd0f620 (patch)
tree895660dd0ea459172c1a55106758a1449c5df975 /functions
parent364ae8f8d07b2e349f192ecfa02985db783803d0 (diff)
downloadmkinitcpio-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--functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/functions b/functions
index beb4a3e..715b555 100644
--- a/functions
+++ b/functions
@@ -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