diff --git a/Makefile b/Makefile index a6ae933..b9c97ba 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,11 @@ all: $(PYTHON) setup.py build install: - $(PYTHON) setup.py install \ - --root=$(DESTDIR) \ - --prefix=$(prefix) \ - --install-scripts=$(bindir) + $(PYTHON) setup.py install + # $(PYTHON) setup.py install \ + # --root=$(DESTDIR) \ + # --prefix=$(prefix) \ + # --install-scripts=$(bindir) dist: $(PYTHON) setup.py sdist diff --git a/setup.py b/setup.py index 68d24a3..c14bc38 100644 --- a/setup.py +++ b/setup.py @@ -7,8 +7,8 @@ # You may have to change these LUA_LIBS = ["lua"] -LUA_INCDIR = ["/opt/local/include"] -LUA_LIBDIR = ["/opt/local/lib"] +LUA_INCDIR = ["/usr/local/include"] +LUA_LIBDIR = ["/usr/local/lib"] setup(name="lunatic-python", version = "1.0",