From 2699cdc9b4e968a465697bcbb48034ef13e64a91 Mon Sep 17 00:00:00 2001 From: david <> Date: Sat, 25 May 2002 01:23:36 +0000 Subject: [PATCH] Got Python installation fixed, at least on Debian. --- LDP/lampadas/pylib/Lampadas.pth | 2 ++ LDP/lampadas/pylib/Makefile | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 LDP/lampadas/pylib/Lampadas.pth diff --git a/LDP/lampadas/pylib/Lampadas.pth b/LDP/lampadas/pylib/Lampadas.pth new file mode 100644 index 00000000..4787bbe3 --- /dev/null +++ b/LDP/lampadas/pylib/Lampadas.pth @@ -0,0 +1,2 @@ +Lampadas + diff --git a/LDP/lampadas/pylib/Makefile b/LDP/lampadas/pylib/Makefile index a9f6a0c9..2e67b279 100644 --- a/LDP/lampadas/pylib/Makefile +++ b/LDP/lampadas/pylib/Makefile @@ -1,4 +1,4 @@ -modprefix = /usr/lib/python2.1/site-packages +modprefix = /usr/local/lib/site-python INSTALLDIR = install -d INSTALLMOD = install -p -m 644 @@ -10,6 +10,7 @@ build: install: all $(INSTALLDIR) $(modprefix)/Lampadas $(INSTALLMOD) *.py $(modprefix)/Lampadas + $(INSTALLMOD) Lampadas.pth $(modprefix) clean: rm -f *.pyc