You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.9 KiB
63 lines
1.9 KiB
7 years ago
|
From 290dac0294fcf7a441e80f10a59ffdea61a1c422 Mon Sep 17 00:00:00 2001
|
||
|
From: Andrey Borzenkov <arvidjaar@gmail.com>
|
||
|
Date: Tue, 21 Jan 2014 20:54:09 +0400
|
||
|
Subject: [PATCH 040/237] add GRUB_WINDOWS_EXTRA_DIST to allow shipping runtime
|
||
|
files
|
||
|
|
||
|
Not all toolkits provide static libraries. This patch enables creation of self
|
||
|
contained distribution that does not require pre-existing runtime libraries.
|
||
|
Intended usage is
|
||
|
|
||
|
export GRUB_WINDOWS_EXTRA_DIST="/path/to/liblzma.dll /path/to/libintl.dll"
|
||
|
make
|
||
|
make windowszip
|
||
|
|
||
|
As those libraries and locations are dependent on toolchain in use, trying
|
||
|
to autodetect them is likely impossible. So just provide a simple way to
|
||
|
package everything in one step.
|
||
|
|
||
|
Also remove $(windowsdir) after ZIP was created same as other "make dist"
|
||
|
targets.
|
||
|
---
|
||
|
ChangeLog | 5 +++++
|
||
|
Makefile.am | 4 ++++
|
||
|
2 files changed, 9 insertions(+)
|
||
|
|
||
|
diff --git a/ChangeLog b/ChangeLog
|
||
|
index 3ba57ae..1ede370 100644
|
||
|
--- a/ChangeLog
|
||
|
+++ b/ChangeLog
|
||
|
@@ -1,5 +1,10 @@
|
||
|
2014-01-21 Andrey Borzenkov <arvidjaar@gmail.com>
|
||
|
|
||
|
+ * Makefile.am: Allow adding extra files to generated Windows ZIP
|
||
|
+ archive by setting GRUB_WINDOWS_EXTRA_DIST.
|
||
|
+
|
||
|
+2014-01-21 Andrey Borzenkov <arvidjaar@gmail.com>
|
||
|
+
|
||
|
* configure.ac: Look for DejaVuSans also in /usr/share/fonts/truetype.
|
||
|
Show detected font path in summary.
|
||
|
|
||
|
diff --git a/Makefile.am b/Makefile.am
|
||
|
index 97c062d..f02ae0a 100644
|
||
|
--- a/Makefile.am
|
||
|
+++ b/Makefile.am
|
||
|
@@ -420,10 +420,14 @@ windowsdir: $(PROGRAMS) $(starfield_DATA) $(platform_DATA)
|
||
|
for x in $(starfield_DATA); do \
|
||
|
cp -fp $$x $(windowsdir)/themes/starfield/$$(basename $$x); \
|
||
|
done
|
||
|
+ for x in $(GRUB_WINDOWS_EXTRA_DIST); do \
|
||
|
+ cp -fp $$x $(windowsdir); \
|
||
|
+ done
|
||
|
|
||
|
windowszip=$(top_builddir)/$(PACKAGE)-$(VERSION)-for-windows.zip
|
||
|
windowszip: windowsdir
|
||
|
test -f $(windowszip) && rm $(windowszip) || true
|
||
|
zip -r $(windowszip) $(windowsdir)
|
||
|
+ rm -rf $(windowsdir)
|
||
|
|
||
|
EXTRA_DIST += linguas.sh
|
||
|
--
|
||
|
2.9.3
|
||
|
|