diff options
author | Gleb Popov <arrowd@FreeBSD.org> | 2023-10-22 07:44:00 +0000 |
---|---|---|
committer | Gleb Popov <arrowd@FreeBSD.org> | 2023-10-22 07:45:42 +0000 |
commit | a98f932a68f6dc89221e27f2c58532591d32ada4 (patch) | |
tree | 8ad5efcff0ed65a58d66c04d7f6856487d86a706 | |
parent | 6dc7ad3434ebb93a2697c7ea7e3432950a33f66d (diff) | |
download | ports-a98f932a68f6dc89221e27f2c58532591d32ada4.tar.gz ports-a98f932a68f6dc89221e27f2c58532591d32ada4.zip |
devel/glib20: Remove another stale patch
Approved by: rnagy [1]
[1] https://github.com/freebsd/freebsd-ports/commit/9c491d7c0f531ffaa275d5585c3cbaefc97936c5#commitcomment-130605472
-rw-r--r-- | devel/glib20/files/patch-glib_gfileutils.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/devel/glib20/files/patch-glib_gfileutils.c b/devel/glib20/files/patch-glib_gfileutils.c deleted file mode 100644 index f26011803925..000000000000 --- a/devel/glib20/files/patch-glib_gfileutils.c +++ /dev/null @@ -1,14 +0,0 @@ -https://gitlab.gnome.org/GNOME/glib/merge_requests/832 - -Index: glib/gfileutils.c ---- glib/gfileutils.c.orig -+++ glib/gfileutils.c -@@ -259,7 +259,7 @@ g_mkdir_with_parents (const gchar *pathname, - - if (!g_file_test (fn, G_FILE_TEST_EXISTS)) - { -- if (g_mkdir (fn, mode) == -1 && errno != EEXIST) -+ if (g_mkdir (fn, mode) == -1 && errno != EEXIST && (p ? (errno != ENOENT) : (-1))) - { - int errno_save = errno; - if (errno != ENOENT || !p) |