31 lines
747 B
Diff
31 lines
747 B
Diff
|
From d0e5a819e8b16b38c22cb7309e88bf49a6fdcc4a Mon Sep 17 00:00:00 2001
|
||
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
||
|
Date: Fri, 9 Feb 2018 15:55:38 +0000
|
||
|
Subject: [PATCH] python: Fix missing & additional backslashes which broke
|
||
|
python sdist.
|
||
|
|
||
|
Fixes commit e6c89f96316c3eda6049d0c3ed4de4cda6f4f973.
|
||
|
---
|
||
|
python/Makefile.am | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/python/Makefile.am b/python/Makefile.am
|
||
|
index 5d2716e20..ef500d65d 100644
|
||
|
--- a/python/Makefile.am
|
||
|
+++ b/python/Makefile.am
|
||
|
@@ -101,9 +101,9 @@ stamp-extra-files: \
|
||
|
cleanups.h \
|
||
|
config.h \
|
||
|
guestfs-internal-all.h \
|
||
|
- guestfs-utils.h
|
||
|
+ guestfs-utils.h \
|
||
|
ignore-value.h \
|
||
|
- utils.c \
|
||
|
+ utils.c
|
||
|
touch $@
|
||
|
|
||
|
config.h:
|
||
|
--
|
||
|
2.15.1
|
||
|
|