diff options
| author | Frederic Peters <fpeters@entrouvert.com> | 2005-01-26 07:54:19 +0000 |
|---|---|---|
| committer | Frederic Peters <fpeters@entrouvert.com> | 2005-01-26 07:54:19 +0000 |
| commit | 7d42f78100627e7be1ce64b2297bf034f432b3de (patch) | |
| tree | 25ba57ee88c3feb896bab18eb707bdd4dc88a13c | |
| parent | 3fb162362f8ec043724d182682a060fea611622a (diff) | |
| download | lasso-7d42f78100627e7be1ce64b2297bf034f432b3de.tar.gz lasso-7d42f78100627e7be1ce64b2297bf034f432b3de.tar.xz lasso-7d42f78100627e7be1ce64b2297bf034f432b3de.zip | |
use python as found by configure
| -rw-r--r-- | lasso/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lasso/Makefile.am b/lasso/Makefile.am index 9c9d8d09..973f8fcf 100644 --- a/lasso/Makefile.am +++ b/lasso/Makefile.am @@ -22,10 +22,10 @@ BUILT_SOURCES = types.c symbols.sym liblasso_la_SOURCES = lasso.c errors.c types.c: - python $(srcdir)/extract_types.py $(srcdir) + $(PYTHON) $(srcdir)/extract_types.py $(srcdir) symbols.sym: - python $(srcdir)/extract_symbols.py $(srcdir) > symbols.sym + $(PYTHON) $(srcdir)/extract_symbols.py $(srcdir) > symbols.sym clean-local: -rm types.c symbols.sym |
