All of lore.kernel.org
 help / color / mirror / Atom feed
* [nft PATCH] py: Fix gitignore of lib/ directory
@ 2019-05-07 13:21 Phil Sutter
  0 siblings, 0 replies; only message in thread
From: Phil Sutter @ 2019-05-07 13:21 UTC (permalink / raw)
  To: Pablo Neira Ayuso; +Cc: netfilter-devel

Pattern is not a PCRE one but merely a shell glob. Hence 'lib.*' matches
only 'lib.' prefix, not also 'lib'.

Fixes: bf9653667a39e ("python: installation of binding via make install")
Signed-off-by: Phil Sutter <phil@nwl.cc>
---
 py/.gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/py/.gitignore b/py/.gitignore
index 09c1e62bbd128..10c1710732cbf 100644
--- a/py/.gitignore
+++ b/py/.gitignore
@@ -1,5 +1,5 @@
 *.pyc
 build/
 dist/
-lib.*/
+lib*/
 nftables.egg-info/
-- 
2.21.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-05-07 13:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-07 13:21 [nft PATCH] py: Fix gitignore of lib/ directory Phil Sutter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.