Displaying 3 results from an estimated 3 matches for "c2f57a6ba".
2019 Dec 19
1
[PATCH] python: remove also __pycache__ directories on clean
---
python/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/Makefile.am b/python/Makefile.am
index 9aca202b5..c2f57a6ba 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -159,4 +159,4 @@ CLEANFILES += \
utils.c
clean-local:
- rm -rf build dist
+ rm -rf build dist __pycache__ t/__pycache__
--
2.24.1
2019 Dec 20
0
[common/libguestfs PATCH 2/2] build: use split stringlist functions from common/utils
...eet, Fifth Floor, Boston, MA 02110-1301 USA.
include actions.h
-include c-ctype.h
-include cleanups.h
include config.h
-include guestfs-internal-all.h
-include guestfs-utils.h
-include ignore-value.h
+include guestfs-stringlists-utils.h
diff --git a/python/Makefile.am b/python/Makefile.am
index c2f57a6ba..b470d2df2 100644
--- a/python/Makefile.am
+++ b/python/Makefile.am
@@ -63,7 +63,8 @@ libguestfsmod_la_SOURCES = \
actions.h \
handle.c \
module.c \
- structs.c
+ structs.c \
+ ../common/utils/stringlists-utils.c
libguestfsmod_la_CPPFLAGS = \
-DGUESTFS_PRIVATE=1 \
@@ -75,7 +76,6 @@ libgu...
2019 Dec 20
3
[common/libguestfs PATCH 0/2] Fix OCaml/Python linking
Make sure they can build also in no as-neede setups.
Pino Toscano (1):
utils: split string list functions in own file
build: use split stringlist functions from common/utils
utils/Makefile.am | 2 +
utils/guestfs-stringlists-utils.h | 30 +++++
utils/guestfs-utils.h | 7 +-
utils/stringlists-utils.c | 197 ++++++++++++++++++++++++++++++
utils/utils.c