diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-12-17 02:28:37 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-12-17 02:28:37 +0000 |
commit | fc53cf0b24fd5d850c12c05ae7f9957d944b5d5e (patch) | |
tree | 63b4071afdb11ce263b07eca9690d1b7b2ec6cb9 /Makefile | |
parent | 6f3c1a5fdc8b287f22169d9c048a0b28ffacfbc4 (diff) | |
download | anaconda-fc53cf0b24fd5d850c12c05ae7f9957d944b5d5e.tar.gz anaconda-fc53cf0b24fd5d850c12c05ae7f9957d944b5d5e.tar.xz anaconda-fc53cf0b24fd5d850c12c05ae7f9957d944b5d5e.zip |
fixup locale-list generation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -19,7 +19,7 @@ CATALOGS = po/anaconda.pot PYFILES = $(wildcard *.py) -all: subdirs mini-wm _xkb.so xmouse.so xutils.so $(CATALOGS) lang-table lang-names product.py +all: subdirs mini-wm _xkb.so xmouse.so xutils.so $(CATALOGS) lang-table lang-names product.py locale-list product.py: product.py.in Makefile.inc sed -e 's/@@PRODUCTNAME@@/$(PRODUCTNAME)/g' < product.py.in > product.py @@ -27,6 +27,9 @@ product.py: product.py.in Makefile.inc lang-names: lang-table PYTHONPATH="." $(PYTHON) scripts/getlangnames.py > lang-names +locale-list: + PYTHONPATH="." $(PYTHON) scripts/genlocalelist > locale-list + mini-wm: mini-wm.c gcc -o mini-wm mini-wm.c `pkg-config gtk+-x11-2.0 --cflags --libs` @@ -82,6 +85,7 @@ install: cp -var $(PYFILES) $(DESTDIR)/$(PYTHONLIBDIR) cp -a lang-table $(DESTDIR)/$(PYTHONLIBDIR) cp -a lang-names $(DESTDIR)/$(PYTHONLIBDIR) + cp -a locale-list $(DESTDIR)/$(ANACONDADATADIR)/locale-list cp -a lang-table-kon $(DESTDIR)/$(PYTHONLIBDIR) ./py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR) $(PYFILES) cp -a *.so $(DESTDIR)/$(PYTHONLIBDIR) |