diff options
author | Liming Gao <liming.gao@intel.com> | 2016-09-29 22:00:22 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-10-24 12:33:52 +0800 |
commit | 3a4d706b3799f6dba93f18021d00256f2ef4bd81 (patch) | |
tree | 48c25aa04f2839c95e697b58909776741c3f8938 /BaseTools | |
parent | 4133a8a31a07544651e02efc4306a662a5580ee8 (diff) | |
download | edk2-3a4d706b3799f6dba93f18021d00256f2ef4bd81.tar.gz edk2-3a4d706b3799f6dba93f18021d00256f2ef4bd81.tar.bz2 edk2-3a4d706b3799f6dba93f18021d00256f2ef4bd81.zip |
BaseTools Makefile: Missing LFAGS in app.makefile
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Yonghong Zhu <yonghong.zhu@intel.com>
(cherry picked from commit 2dc547da460038e180f28161a44998e1849b2f43)
Diffstat (limited to 'BaseTools')
-rw-r--r-- | BaseTools/Source/C/Makefiles/app.makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/C/Makefiles/app.makefile b/BaseTools/Source/C/Makefiles/app.makefile index b727a7ed16..e414551b4a 100644 --- a/BaseTools/Source/C/Makefiles/app.makefile +++ b/BaseTools/Source/C/Makefiles/app.makefile @@ -21,7 +21,7 @@ APPLICATION = $(MAKEROOT)/bin/$(APPNAME) all: $(MAKEROOT)/bin $(APPLICATION)
$(APPLICATION): $(OBJECTS)
- $(LINKER) -o $(APPLICATION) $(LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
+ $(LINKER) -o $(APPLICATION) $(BUILD_LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
$(OBJECTS): ../Include/Common/BuildVersion.h
|