fix bit rot in scripts/Makefile.IMA
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
102b8bde3b
commit
726ebbaa9f
@ -87,7 +87,7 @@ struct globals {
|
||||
const char *login; /* login program */
|
||||
const char *fakehost;
|
||||
const char *tty; /* name of tty */
|
||||
const char *initstring; /* modem init string */
|
||||
char *initstring; /* modem init string */
|
||||
const char *issue; /* alternative issue file */
|
||||
int numspeed; /* number of baud rates to try */
|
||||
int speeds[MAX_SPEED]; /* baud rates to be tried */
|
||||
@ -176,7 +176,7 @@ static void parse_args(char **argv)
|
||||
if (flags & F_INITSTRING) {
|
||||
G.initstring = xstrdup(G.initstring);
|
||||
/* decode \ddd octal codes into chars */
|
||||
strcpy_and_process_escape_sequences((char*)G.initstring, G.initstring);
|
||||
strcpy_and_process_escape_sequences(G.initstring, G.initstring);
|
||||
}
|
||||
argv += optind;
|
||||
debug("after getopt\n");
|
||||
|
@ -9,7 +9,10 @@ objtree := $(CURDIR)
|
||||
src := $(srctree)
|
||||
obj := $(objtree)
|
||||
|
||||
# Look for make include files relative to root of kernel src
|
||||
# Make generated files
|
||||
DUMMY := $(shell $(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree) >&2)
|
||||
|
||||
# Look for make include files relative to root of src
|
||||
MAKEFLAGS += --include-dir=$(srctree)
|
||||
|
||||
default: busybox
|
||||
@ -121,6 +124,9 @@ lib-y:=
|
||||
include miscutils/Kbuild
|
||||
lib-all-y += $(patsubst %,miscutils/%,$(sort $(lib-y)))
|
||||
lib-y:=
|
||||
include mailutils/Kbuild
|
||||
lib-all-y += $(patsubst %,mailutils/%,$(sort $(lib-y)))
|
||||
lib-y:=
|
||||
include coreutils/libcoreutils/Kbuild
|
||||
lib-all-y += $(patsubst %,coreutils/libcoreutils/%,$(sort $(lib-y)))
|
||||
lib-y:=
|
||||
|
Loading…
Reference in New Issue
Block a user