mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
Changes call to time() to call to gettimeofday() according to utmp man page Removes font installation from makefile and delegates to portage machinery so font cache gets updated Bug: https://bugs.gentoo.org/835793 Closes: https://bugs.gentoo.org/919295 Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40547 Signed-off-by: Sam James <sam@gentoo.org>
15 lines
497 B
Diff
15 lines
497 B
Diff
Use portage machinery instead of package makefiles to install fonts
|
|
This does fc-cache, unlike before
|
|
https://bugs.gentoo.org/835793
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -22,9 +22,7 @@
|
|
|
|
install-exec-hook:
|
|
chown root:utmp $(DESTDIR)$(bindir)/jfbterm
|
|
- chmod ug+s $(DESTDIR)$(bindir)/jfbterm
|
|
|
|
install-data-local:
|
|
$(INSTALL_DATA) $(srcdir)/$(JFBTERM_CONFIG_FILE) $(DESTDIR)$(sysconfdir)/$(JFBTERM_CONFIG_FILE)
|
|
- $(INSTALL_DATA) $(srcdir)/fonts/*.pcf.gz $(DESTDIR)$(datadir)/fonts/jfbterm
|
|
|