blob: be8c421fa2424456482bc6f685611d153a244489 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-aa,v 1.1.1.1 2002/02/05 19:44:53 drochner Exp $
--- Makefile.orig Tue Feb 5 19:25:20 2002
+++ Makefile Tue Feb 5 19:40:08 2002
@@ -56,10 +56,10 @@
python HTMLutil.py -s
compileall:
- python -c "import compileall; compileall.compile_dir('.',0)"
+ ${PYTHONBIN} -c "import compileall; compileall.compile_dir('.',0)"
install: compileall
- python installp.py -f $(MODULES) $(MODULESC) $(PIL) $(PILC)
+ ${PYTHONBIN} installp.py -f $(MODULES) $(MODULESC) $(PIL) $(PILC)
@echo Installation of $(PACKAGE) done.
checkin:
|