mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
s4-build: avoid finding python symlinks
emacs creates symlinks to .py files while you are editing them. This could cause build failures.
This commit is contained in:
parent
4aaa7fe43b
commit
960fab4bba
@ -23,7 +23,7 @@ python_glue_OBJ_FILES = $(pyscriptsrcdir)/pyglue.o
|
||||
|
||||
$(python_glue_OBJ_FILES): CFLAGS+=-I$(ldbsrcdir)
|
||||
|
||||
_PY_FILES = $(shell find $(pyscriptsrcdir)/samba ../lib/subunit/python -name "*.py")
|
||||
_PY_FILES = $(shell find $(pyscriptsrcdir)/samba ../lib/subunit/python -type f -name "*.py")
|
||||
|
||||
$(eval $(foreach pyfile, $(_PY_FILES),$(call python_py_module_template,$(patsubst $(pyscriptsrcdir)/%,%,$(subst ../lib/subunit/python,,$(pyfile))),$(pyfile))))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user