mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Install python modules properly.
There was a bug, because of which you needed to run make install twice to get .pyc files installed. Now just make install works.
This commit is contained in:
@@ -59,7 +59,7 @@ modpython/compiler: modpython/compiler.cpp Makefile
|
||||
$(Q)$(CXX) $(PYTHONCOMMON) -o $@ $<
|
||||
|
||||
modpython_install: create_install_dir install_metadirs modpython_all
|
||||
for i in $(wildcard *.pyc); do \
|
||||
for i in *.pyc; do \
|
||||
$(INSTALL_DATA) $$i $(DESTDIR)$(MODDIR); \
|
||||
done
|
||||
for a in $(srcdir)/*; do \
|
||||
|
||||
Reference in New Issue
Block a user