diff options
author | rillig <rillig@pkgsrc.org> | 2007-03-18 08:38:13 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-03-18 08:38:13 +0000 |
commit | 52b443b63abba090d5d7c3b301804fec1802995a (patch) | |
tree | 870c302a18fc5ad95277c265e682a7846c41a0e3 /sysutils/xfsprogs/patches | |
parent | 3525d7445d9c992f43ca8a5c09c103abe8be9599 (diff) | |
download | pkgsrc-52b443b63abba090d5d7c3b301804fec1802995a.tar.gz |
Fixed a fork bomb on IRIX, where for some reason msgfmt is not detected.
Diffstat (limited to 'sysutils/xfsprogs/patches')
-rw-r--r-- | sysutils/xfsprogs/patches/patch-an | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysutils/xfsprogs/patches/patch-an b/sysutils/xfsprogs/patches/patch-an new file mode 100644 index 00000000000..75851da65b2 --- /dev/null +++ b/sysutils/xfsprogs/patches/patch-an @@ -0,0 +1,16 @@ +$NetBSD: patch-an,v 1.1 2007/03/18 08:38:14 rillig Exp $ + +Don't create an endless loop when the configure script failed. Since +bmake doesn't know about tail recursion, this is a slow fork bomb. + +--- Makefile.orig 2005-10-07 18:51:32.000000000 +0200 ++++ Makefile 2007-03-18 09:36:06.000000000 +0100 +@@ -49,7 +49,7 @@ SUBDIRS = include libxfs libxlog libxcmd + + default: $(CONFIGURE) + ifeq ($(HAVE_BUILDDEFS), no) +- $(MAKE) -C . $@ ++ exit 1 + else + $(SUBDIRS_MAKERULE) + endif |