diff options
Diffstat (limited to 'meta-oe/recipes-extended/acpica/files/fix-parallel-build.patch')
| -rw-r--r-- | meta-oe/recipes-extended/acpica/files/fix-parallel-build.patch | 80 |
1 files changed, 0 insertions, 80 deletions
diff --git a/meta-oe/recipes-extended/acpica/files/fix-parallel-build.patch b/meta-oe/recipes-extended/acpica/files/fix-parallel-build.patch deleted file mode 100644 index 42e3fb14c8..0000000000 --- a/meta-oe/recipes-extended/acpica/files/fix-parallel-build.patch +++ /dev/null | |||
| @@ -1,80 +0,0 @@ | |||
| 1 | diff --git a/generate/unix/iasl/Makefile b/generate/unix/iasl/Makefile | ||
| 2 | index e9520ed..1b73d7a 100644 | ||
| 3 | --- a/generate/unix/iasl/Makefile | ||
| 4 | +++ b/generate/unix/iasl/Makefile | ||
| 5 | @@ -212,13 +212,10 @@ INTERMEDIATES = \ | ||
| 6 | MISC = \ | ||
| 7 | $(OBJDIR)/aslcompilerparse.h\ | ||
| 8 | $(OBJDIR)/aslcompiler.y.h\ | ||
| 9 | - $(OBJDIR)/aslcompilerparse.output\ | ||
| 10 | $(OBJDIR)/dtparserparse.h\ | ||
| 11 | $(OBJDIR)/dtparser.y.h\ | ||
| 12 | - $(OBJDIR)/dtparserparse.output\ | ||
| 13 | $(OBJDIR)/prparserparse.h\ | ||
| 14 | - $(OBJDIR)/prparser.y.h\ | ||
| 15 | - $(OBJDIR)/prparserparse.output | ||
| 16 | + $(OBJDIR)/prparser.y.h | ||
| 17 | |||
| 18 | # | ||
| 19 | # Flags specific to iASL compiler | ||
| 20 | @@ -240,21 +237,29 @@ include ../Makefile.rules | ||
| 21 | $(OBJDIR)/aslcompilerlex.c : $(ASL_COMPILER)/aslcompiler.l $(ASL_COMPILER)/aslsupport.l | ||
| 22 | $(LEX) $(LFLAGS) -PAslCompiler -o$@ $(ASL_COMPILER)/aslcompiler.l | ||
| 23 | |||
| 24 | -$(OBJDIR)/aslcompilerparse.c $(OBJDIR)/aslcompilerparse.h : $(ASL_COMPILER)/aslcompiler.y | ||
| 25 | +$(OBJDIR)/aslcompilerparse.c : $(ASL_COMPILER)/aslcompiler.y | ||
| 26 | $(YACC) $(YFLAGS) -pAslCompiler -o$@ $? | ||
| 27 | |||
| 28 | $(OBJDIR)/dtparserlex.c : $(ASL_COMPILER)/dtparser.l | ||
| 29 | $(LEX) $(LFLAGS) -PDtParser -o$@ $? | ||
| 30 | |||
| 31 | -$(OBJDIR)/dtparserparse.c $(OBJDIR)/dtparserparse.h : $(ASL_COMPILER)/dtparser.y | ||
| 32 | +$(OBJDIR)/dtparserparse.c : $(ASL_COMPILER)/dtparser.y | ||
| 33 | $(YACC) $(YFLAGS) -pDtParser -o$@ $? | ||
| 34 | |||
| 35 | $(OBJDIR)/prparserlex.c : $(ASL_COMPILER)/prparser.l | ||
| 36 | $(LEX) $(LFLAGS) -PPrParser -o$@ $? | ||
| 37 | |||
| 38 | -$(OBJDIR)/prparserparse.c $(OBJDIR)/prparserparse.h : $(ASL_COMPILER)/prparser.y | ||
| 39 | +$(OBJDIR)/prparserparse.c : $(ASL_COMPILER)/prparser.y | ||
| 40 | $(YACC) $(YFLAGS) -pPrParser -o$@ $? | ||
| 41 | |||
| 42 | +$(OBJDIR)/aslcompilerparse.h : $(OBJDIR)/aslcompilerparse.c | ||
| 43 | + touch $@ | ||
| 44 | + | ||
| 45 | +$(OBJDIR)/dtparserparse.h : $(OBJDIR)/dtparserparse.c | ||
| 46 | + touch $@ | ||
| 47 | + | ||
| 48 | +$(OBJDIR)/prparserparse.h: $(OBJDIR)/prparserparse.c | ||
| 49 | + touch $@ | ||
| 50 | |||
| 51 | # | ||
| 52 | # Rename the headers produced by bison/yacc | ||
| 53 | @@ -279,19 +284,21 @@ $(OBJDIR)/prparser.y.h: $(OBJDIR)/prparserparse.h | ||
| 54 | # by the utilities above and they are not necessarily ANSI C, etc. | ||
| 55 | # | ||
| 56 | $(OBJDIR)/aslcompilerlex.o : $(OBJDIR)/aslcompilerlex.c | ||
| 57 | - $(CC) -c $(CFLAGS) -Wall -o$@ $? | ||
| 58 | + $(CC) -c $(CFLAGS) -Wall -o$@ $< | ||
| 59 | |||
| 60 | $(OBJDIR)/aslcompilerparse.o : $(OBJDIR)/aslcompilerparse.c | ||
| 61 | - $(CC) -c $(CFLAGS) -Wall -o$@ $? | ||
| 62 | + $(CC) -c $(CFLAGS) -Wall -o$@ $< | ||
| 63 | |||
| 64 | $(OBJDIR)/dtparserlex.o : $(OBJDIR)/dtparserlex.c | ||
| 65 | - $(CC) -c $(CFLAGS) -Wall -o$@ $? | ||
| 66 | + $(CC) -c $(CFLAGS) -Wall -o$@ $< | ||
| 67 | |||
| 68 | $(OBJDIR)/dtparserparse.o : $(OBJDIR)/dtparserparse.c | ||
| 69 | - $(CC) -c $(CFLAGS) -Wall -o$@ $? | ||
| 70 | + $(CC) -c $(CFLAGS) -Wall -o$@ $< | ||
| 71 | |||
| 72 | $(OBJDIR)/prparserlex.o : $(OBJDIR)/prparserlex.c | ||
| 73 | - $(CC) -c $(CFLAGS) -Wall -o$@ $? | ||
| 74 | + $(CC) -c $(CFLAGS) -Wall -o$@ $< | ||
| 75 | |||
| 76 | $(OBJDIR)/prparserparse.o : $(OBJDIR)/prparserparse.c | ||
| 77 | - $(CC) -c $(CFLAGS) -Wall -o$@ $? | ||
| 78 | + $(CC) -c $(CFLAGS) -Wall -o$@ $< | ||
| 79 | + | ||
| 80 | +$(OBJECTS): $(HEADERS) | ||
