summaryrefslogtreecommitdiff
path: root/bg
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2001-06-26 00:46:33 +0000
committerMichael Jennings <mej@kainx.org>2001-06-26 00:46:33 +0000
commitafc51e774a62a97144c71555325c5dcd73119625 (patch)
tree4255cd4569b0b92d86bf427edd1c8b4a2f29d2ca /bg
parentdf92d006358a21eb2ce28e83be557d2a36cf59a0 (diff)
downloadeterm-afc51e774a62a97144c71555325c5dcd73119625.tar.gz
Mon Jun 25 17:41:55 2001 Michael Jennings (mej)
Several changes here, many of which come from the Debian bug list or from bug reports on IRC. First off, I believe I've fixed an install issue with the bg/ directory. I also put an alternative acsc line in the terminfo file to see if it fixes anything on Debian. (RH works fine.) I removed the "main" context from all the theme files...which is something I should've done ages ago, but I forgot. I made a couple things options which were not previously configurable. The proportional font thingie which shrank the character cell width is now the --proportional option. The automatic window gravity on resize is now the --resize-gravity option. Both are boolean, and both are documented in the man page. And finally, I added the kill() function to the script language. At this point it can only take signals as numbers, but that's good enough for now. SVN revision: 4857
Diffstat (limited to 'bg')
-rw-r--r--bg/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/bg/Makefile.am b/bg/Makefile.am
index 89ab6cb..a6e0ebe 100644
--- a/bg/Makefile.am
+++ b/bg/Makefile.am
@@ -10,10 +10,10 @@ themedir = $(pkgdatadir)/themes
install-data-hook:
@(for j in $(DIRS) ; do echo "Installing pixmaps in $$j" ; \
- $(mkinstalldirs) $(DESTDIR)$(pixmapdir)/$$j ; cd $(srcdir)/$$j ; \
+ $(mkinstalldirs) $(DESTDIR)$(pixmapdir)/$$j ; (cd $(srcdir)/$$j ; \
for i in `ls -1 | grep -v CVS | grep -v \.cvsignore` ; do \
echo $(INSTALL_DATA) $$i $(DESTDIR)${pixmapdir}/$$j/ ; \
$(INSTALL_DATA) $$i $(DESTDIR)${pixmapdir}/$$j/ ; \
- done ; cd .. ; \
+ done) ; \
done)
$(UPDATE_SCRIPT) $(DESTDIR)${pixmapdir}