diff options
author | Liming Gao <liming.gao@intel.com> | 2016-09-29 22:00:22 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-09-30 14:13:45 +0800 |
commit | 2dc547da460038e180f28161a44998e1849b2f43 (patch) | |
tree | d699e91dc356ed1fc18c56258616664102478b43 /BaseTools | |
parent | dab62c5ec8a88def3ee99c04d644720cb201de08 (diff) | |
download | edk2-platforms-2dc547da460038e180f28161a44998e1849b2f43.tar.xz |
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>
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
|