summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2018-06-01 14:00:26 +0930
committerStewart Smith <stewart@linux.ibm.com>2018-06-01 02:07:26 -0500
commit22320e119800dc743ff7ab07a4d9f6e8c0845692 (patch)
tree10dbc40482a96c86dd013566d2aed859762a183b
parent60cb2cd0595d2bc0253fa5ada3f07d4fb69823e3 (diff)
downloadtalos-skiboot-22320e119800dc743ff7ab07a4d9f6e8c0845692.tar.gz
talos-skiboot-22320e119800dc743ff7ab07a4d9f6e8c0845692.zip
pflash: Use correct prefix when installing
pflash uses lowercase prefix when running make install in it's direcetory, but uppercase PREFIX when running it in shared. Use lowercase everywhere. With this the OpenBMC bitbake recipie can drop an out of tree patch it's been carrying for years. Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r--external/pflash/rules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/pflash/rules.mk b/external/pflash/rules.mk
index 3ee82b50..5839fec6 100644
--- a/external/pflash/rules.mk
+++ b/external/pflash/rules.mk
@@ -24,7 +24,7 @@ OBJS := $(PFLASH_OBJS) $(SHARED)
INSTALLDEPS += install-shared
install-shared:
- $(MAKE) -C ../shared install PREFIX=$(PREFIX)
+ $(MAKE) -C ../shared install prefix=$(prefix)
$(SHARED):
$(MAKE) -C ../shared
OpenPOWER on IntegriCloud