projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24f8ac1
)
pygrub fsimage.so: Honour LDFLAGS when building
author
Ian Jackson
<ian.jackson@citrix.com>
Thu, 4 Oct 2018 11:32:00 +0000
(12:32 +0100)
committer
Hans van Kranenburg
<hans@knorrie.org>
Tue, 26 May 2020 12:03:18 +0000
(14:03 +0200)
This seems to have been simply omitted. Obviously this is needed when
building and not just when installing. Passing only when installing
is ineffective.
Signed-off-by: Ian Jackson <ian.jackson@citrix.com>
tools/pygrub/Makefile
patch
|
blob
|
history
diff --git
a/tools/pygrub/Makefile
b/tools/pygrub/Makefile
index 536af07932b44d99d2e7b6ccab903855ce112573..3063c4998fe9aa7d031b324c958eceee508988d9 100644
(file)
--- a/
tools/pygrub/Makefile
+++ b/
tools/pygrub/Makefile
@@
-10,7
+10,7
@@
INSTALL_LOG = build/installed_files.txt
all: build
.PHONY: build
build:
- CC="$(CC)" CFLAGS="$(PY_CFLAGS)" $(PYTHON) setup.py build
+ CC="$(CC)" CFLAGS="$(PY_CFLAGS)"
LDFLAGS="$(PY_LDFLAGS)"
$(PYTHON) setup.py build
.PHONY: install
install: all