summaryrefslogtreecommitdiff
path: root/Ports
diff options
context:
space:
mode:
authorGunnar Beutner <gunnar@beutner.name>2021-04-14 21:58:17 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-14 22:43:53 +0200
commitd96354f58e35786d2400934b7e9dca938e319e7e (patch)
tree7bbc6d162d5de4cab261933f3443a2c84ebf0d0f /Ports
parentf62f6c2b3716a1afb38aec714a49bfc289b8f33d (diff)
downloadserenity-d96354f58e35786d2400934b7e9dca938e319e7e.zip
Ports: Remove obsolete patch for the oksh port
The patch is not necessary anymore and breaks the build now that LibC has isblank.
Diffstat (limited to 'Ports')
-rw-r--r--Ports/oksh/patches/implement_isblank.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/Ports/oksh/patches/implement_isblank.patch b/Ports/oksh/patches/implement_isblank.patch
deleted file mode 100644
index 48c0a5b652..0000000000
--- a/Ports/oksh/patches/implement_isblank.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/charclass.h b/charclass.h
-index 5edb2c1..af00709 100644
---- a/charclass.h
-+++ b/charclass.h
-@@ -7,6 +7,11 @@
- /*
- * POSIX character class support for fnmatch() and glob().
- */
-+int
-+isblank(int c)
-+{
-+ return (c == ' ' || c == '\t');
-+}
- static struct cclass {
- const char *name;
- int (*isctype)(int);