summaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/pcmciautils/pcmciautils-018/makefile_race.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-bsp/pcmciautils/pcmciautils-018/makefile_race.patch')
-rw-r--r--meta/recipes-bsp/pcmciautils/pcmciautils-018/makefile_race.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-bsp/pcmciautils/pcmciautils-018/makefile_race.patch b/meta/recipes-bsp/pcmciautils/pcmciautils-018/makefile_race.patch
deleted file mode 100644
index 4c5eba7951..0000000000
--- a/meta/recipes-bsp/pcmciautils/pcmciautils-018/makefile_race.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1"make src/lex_config.o"
2
3results in:
4
5src/lex_config.l:35:25: fatal error: yacc_config.h: No such file or directory
6
7so add missing dependency through a missing rule. Also remove a rule which
8doesn't appear to do anything.
9
10RP
112016/1/31
12
13Upstream-Status: Pending
14
15Index: pcmciautils-018/Makefile
16===================================================================
17--- pcmciautils-018.orig/Makefile
18+++ pcmciautils-018/Makefile
19@@ -246,8 +246,8 @@ $(PCMCIA_SOCKET_STARTUP): $(LIBC) src/st
20 $(QUIET) $(LD) $(LDFLAGS) -o $@ $(CRT0) src/startup.o src/yacc_config.o src/lex_config.o $(LIB_OBJS) $(ARCH_LIB_OBJS)
21 $(QUIET) $(STRIPCMD) $@
22
23-yacc_config.o lex_config.o: %.o: %.c
24- $(CC) -c -MD -O -pipe $(CPPFLAGS) $<
25+src/lex_config.o : src/lex_config.c src/yacc_config.h ccdv
26+ $(QUIET) $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
27
28 debugtools: ccdv $(CBDUMP) $(CISDUMP)
29