diff options
author | John Beppu <beppu@lbox.org> | 2000-06-27 07:54:33 +0000 |
---|---|---|
committer | John Beppu <beppu@lbox.org> | 2000-06-27 07:54:33 +0000 |
commit | 495869f59a6cb9be0c180d945fcc03b96949d850 (patch) | |
tree | ce5a523ce1ce9afdd509e4fd6ffefb9818aef57d /busybox.c | |
parent | cb1d841f0943fc1550a5f93be62d5cedab95ecfc (diff) | |
download | busybox-w32-495869f59a6cb9be0c180d945fcc03b96949d850.tar.gz busybox-w32-495869f59a6cb9be0c180d945fcc03b96949d850.tar.bz2 busybox-w32-495869f59a6cb9be0c180d945fcc03b96949d850.zip |
+ s/int install_links/static int install_links/
? Did you want "busybox --install" or "busybox install" ?
The TODO and mailing-list conflict on this issue.
I would recommend against "busybox install", because
people might confuse it w/ /usr/bin/install that does
something different.
Diffstat (limited to '')
-rw-r--r-- | busybox.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -377,7 +377,7 @@ static char* install_dir[] = { | |||
377 | typedef int (*__link_f)(const char *, const char *); | 377 | typedef int (*__link_f)(const char *, const char *); |
378 | 378 | ||
379 | /* create (sym)links for each applet */ | 379 | /* create (sym)links for each applet */ |
380 | int install_links(const char *busybox, int use_symbolic_links) | 380 | static int install_links(const char *busybox, int use_symbolic_links) |
381 | { | 381 | { |
382 | __link_f Link = link; | 382 | __link_f Link = link; |
383 | 383 | ||