diff options
author | Mark H Weaver <mhw@netris.org> | 2013-11-03 18:25:27 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2013-11-03 23:26:17 -0500 |
commit | 1475a351f66f214bf279b870421e31c082704864 (patch) | |
tree | fe2d09b601448b7fc7591def5ff4f509408cc057 | |
parent | b20441f22887a09e52d843e9b44bd7668c8a468c (diff) | |
download | patches-1475a351f66f214bf279b870421e31c082704864.tar patches-1475a351f66f214bf279b870421e31c082704864.tar.gz |
gnu: gdb: patch-makefile-SHELL for all Makefile.in files.
* gnu/packages/gdb.scm (gdb): patch-makefile-SHELL for all Makefile.in files
after configure.
-rw-r--r-- | gnu/packages/gdb.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gdb.scm b/gnu/packages/gdb.scm index 2033c628d7..ddf94f9eaa 100644 --- a/gnu/packages/gdb.scm +++ b/gnu/packages/gdb.scm @@ -47,7 +47,8 @@ '(#:phases (alist-cons-after 'configure 'post-configure (lambda _ - (patch-makefile-SHELL "gdb/gdbserver/Makefile.in")) + (for-each patch-makefile-SHELL + (find-files "." "Makefile\\.in"))) %standard-phases))) (inputs `(("expat" ,expat) |