summaryrefslogtreecommitdiff
path: root/compiler/Makefile
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2010-08-06 17:28:40 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2010-08-06 17:28:40 +0000
commit32e234a854ae3097bb902cf421f91f9c7d24b291 (patch)
tree26cd13498e685dfeec2b6cd294c939d71073fba3 /compiler/Makefile
parent6d31afa8e3ab79bfa6c97c341af73f4fc093351a (diff)
Notes
Diffstat (limited to 'compiler/Makefile')
-rw-r--r--compiler/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/Makefile b/compiler/Makefile
index 962ab670235a0..f1f175c50362f 100644
--- a/compiler/Makefile
+++ b/compiler/Makefile
@@ -7,7 +7,7 @@ PROG= iasl
ACPICA_SRC = ..
ASL_COMPILER = $(ACPICA_SRC)/compiler
ACPICA_COMMON = $(ACPICA_SRC)/common
-ACPICA_CORE = $(ACPICA_SRC)/components
+ACPICA_CORE = $(ACPICA_SRC)
ACPICA_TOOLS = $(ACPICA_SRC)/tools
ACPICA_OSL = $(ACPICA_SRC)/os_specific/service_layers
@@ -166,7 +166,7 @@ MISC = \
# Root rule
#
$(PROG) : $(INTERMEDIATES) $(OBJS)
- $(CC) $(LDFLAGS) $(OBJS) -o $(PROG)
+ $(CC) $(OBJS) $(LDFLAGS) -o $(PROG)
$(COPYPROG)