diff options
author | AnicJov <contact.andrija@gmail.com> | 2021-03-24 23:42:01 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-25 10:58:45 +0100 |
commit | d3630a7b1f451a8d6c9e26d87829b83616a0b3cf (patch) | |
tree | 1dd536dbf12f155e84ad8c7e041aeb056ac14e4d /Ports | |
parent | d182f3224a828d0fe5c1eb00969da6ae4b9711a4 (diff) | |
download | serenity-d3630a7b1f451a8d6c9e26d87829b83616a0b3cf.zip |
Ports: Fix m4
This patch fixes the m4 port by removing unneeded make subdirs that
would cause the build to fail on some systems. We now only care about
the `lib` and `src`.
Diffstat (limited to 'Ports')
-rw-r--r-- | Ports/m4/patches/Makefile.am.patch | 11 | ||||
-rw-r--r-- | Ports/m4/patches/Makefile.in.patch | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/Ports/m4/patches/Makefile.am.patch b/Ports/m4/patches/Makefile.am.patch new file mode 100644 index 0000000000..98a048c973 --- /dev/null +++ b/Ports/m4/patches/Makefile.am.patch @@ -0,0 +1,11 @@ +--- m4-1.4.9/Makefile.am 2021-03-22 06:08:56.323301400 +0100 ++++ m4-1.4.9-patched/Makefile.am 2021-03-22 06:10:35.508791200 +0100 +@@ -20,7 +20,7 @@ + ## + ## Written by Gary V. Vaughan <gary@gnu.org> + +-SUBDIRS = . examples lib src doc checks ++SUBDIRS = . lib src + EXTRA_DIST = bootstrap c-boxes.el gendocs.sh GNUmakefile Makefile.maint \ + m4/gnulib-cache.m4 + DISTCLEANFILES = stamp-h diff --git a/Ports/m4/patches/Makefile.in.patch b/Ports/m4/patches/Makefile.in.patch new file mode 100644 index 0000000000..fa2105ef6f --- /dev/null +++ b/Ports/m4/patches/Makefile.in.patch @@ -0,0 +1,11 @@ +--- m4-1.4.9/Makefile.in 2021-03-22 06:13:45.959823300 +0100 ++++ m4-1.4.9-patched/Makefile.in 2021-03-22 06:18:06.420963000 +0100 +@@ -267,7 +267,7 @@ + target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ +-SUBDIRS = . examples lib src doc checks ++SUBDIRS = . lib src + EXTRA_DIST = bootstrap c-boxes.el gendocs.sh GNUmakefile Makefile.maint \ + m4/gnulib-cache.m4 + |