diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-14 10:43:40 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-02-14 10:43:40 +0000 |
commit | 2d9ed31021da14b13fa96b91d0da79dcf1751d2f (patch) | |
tree | 159bddce73460cfee7899db703654c77edaa16aa /scripts/bb_mkdep.c | |
parent | ca4138369f154cd356273bea212cc83971b7e1f6 (diff) | |
download | busybox-w32-2d9ed31021da14b13fa96b91d0da79dcf1751d2f.tar.gz busybox-w32-2d9ed31021da14b13fa96b91d0da79dcf1751d2f.tar.bz2 busybox-w32-2d9ed31021da14b13fa96b91d0da79dcf1751d2f.zip |
- commentary typos
git-svn-id: svn://busybox.net/trunk/busybox@14012 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'scripts/bb_mkdep.c')
-rw-r--r-- | scripts/bb_mkdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/bb_mkdep.c b/scripts/bb_mkdep.c index d17612b25..ca48c6a28 100644 --- a/scripts/bb_mkdep.c +++ b/scripts/bb_mkdep.c | |||
@@ -109,7 +109,7 @@ static llist_t *configs; /* list of -c usaged and them stat() after parsed */ | |||
109 | static llist_t *Iop; /* list of -I include usaged */ | 109 | static llist_t *Iop; /* list of -I include usaged */ |
110 | 110 | ||
111 | static char *pwd; /* current work directory */ | 111 | static char *pwd; /* current work directory */ |
112 | static size_t replace; /* replace current work derectory with build dir */ | 112 | static size_t replace; /* replace current work directory with build dir */ |
113 | 113 | ||
114 | static const char *kp; /* KEY path, argument of -k used */ | 114 | static const char *kp; /* KEY path, argument of -k used */ |
115 | static size_t kp_len; | 115 | static size_t kp_len; |
@@ -1604,7 +1604,7 @@ int main(int argc, char **argv) | |||
1604 | llist_t *fl; | 1604 | llist_t *fl; |
1605 | 1605 | ||
1606 | { | 1606 | { |
1607 | /* for bb_simplify_path, this program has not chdir() */ | 1607 | /* for bb_simplify_path, this program has no chdir() */ |
1608 | /* libbb-like my xgetcwd() */ | 1608 | /* libbb-like my xgetcwd() */ |
1609 | unsigned path_max = 512; | 1609 | unsigned path_max = 512; |
1610 | 1610 | ||
@@ -1731,7 +1731,7 @@ static char *bb_simplify_path(const char *path) | |||
1731 | if (path[0] == '/') | 1731 | if (path[0] == '/') |
1732 | start = bb_xstrdup(path); | 1732 | start = bb_xstrdup(path); |
1733 | else { | 1733 | else { |
1734 | /* is not libbb, but this program has not chdir() */ | 1734 | /* is not libbb, but this program has no chdir() */ |
1735 | start = bb_asprint("%s/%s", pwd, path); | 1735 | start = bb_asprint("%s/%s", pwd, path); |
1736 | } | 1736 | } |
1737 | p = s = start; | 1737 | p = s = start; |