diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-02-14 10:43:40 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-02-14 10:43:40 +0000 |
commit | 5ba53c05fce018ef4b0d79d942f3a40742304685 (patch) | |
tree | 159bddce73460cfee7899db703654c77edaa16aa /scripts | |
parent | 3afdfecf7ed6c5cd21837b2354128d107808ca43 (diff) | |
download | busybox-5ba53c05fce018ef4b0d79d942f3a40742304685.tar.gz |
- commentary typos
Diffstat (limited to 'scripts')
-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 */ static llist_t *Iop; /* list of -I include usaged */ static char *pwd; /* current work directory */ -static size_t replace; /* replace current work derectory with build dir */ +static size_t replace; /* replace current work directory with build dir */ static const char *kp; /* KEY path, argument of -k used */ static size_t kp_len; @@ -1604,7 +1604,7 @@ int main(int argc, char **argv) llist_t *fl; { - /* for bb_simplify_path, this program has not chdir() */ + /* for bb_simplify_path, this program has no chdir() */ /* libbb-like my xgetcwd() */ unsigned path_max = 512; @@ -1731,7 +1731,7 @@ static char *bb_simplify_path(const char *path) if (path[0] == '/') start = bb_xstrdup(path); else { - /* is not libbb, but this program has not chdir() */ + /* is not libbb, but this program has no chdir() */ start = bb_asprint("%s/%s", pwd, path); } p = s = start; |