diff options
author | dholland <dholland> | 2015-12-24 23:54:07 +0000 |
---|---|---|
committer | dholland <dholland> | 2015-12-24 23:54:07 +0000 |
commit | 9c6c444e0dc99e918f6e39b05662ef54a627327d (patch) | |
tree | fc1b191dbb1ef94cf9f2afa9314f581b4c5b20b1 /devel/florist | |
parent | 025ddda7592b5858885ac73003db40a55805bc2c (diff) | |
download | pkgsrc-9c6c444e0dc99e918f6e39b05662ef54a627327d.tar.gz |
Adjust makefile to not redirect a failing command's output to a
private log file, where it can only be seen with access to the build
machine.
(The command is failing in Joerg's build)
Diffstat (limited to 'devel/florist')
-rw-r--r-- | devel/florist/distinfo | 4 | ||||
-rw-r--r-- | devel/florist/patches/patch-Makefile.in | 16 |
2 files changed, 16 insertions, 4 deletions
diff --git a/devel/florist/distinfo b/devel/florist/distinfo index 778232af0ee..6dacb8c0f99 100644 --- a/devel/florist/distinfo +++ b/devel/florist/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.8 2015/11/03 03:27:26 agc Exp $ +$NetBSD: distinfo,v 1.9 2015/12/24 23:54:07 dholland Exp $ SHA1 (florist-gpl-2012-src.tgz) = 9d0c2dfbb565a92830cb5ea5894bd64d67993061 RMD160 (florist-gpl-2012-src.tgz) = 53e759e65647c87f0d1b691dd0830e56d77c1fab SHA512 (florist-gpl-2012-src.tgz) = 1742756736460f3ca2829c7465a568c177c74ea9417a7bb3e609903672f2fb7b0cbf3f0598bd381c1fd49755b83837583df753e53a03da86ae797028b72c97c5 Size (florist-gpl-2012-src.tgz) = 224141 bytes -SHA1 (patch-Makefile.in) = 3052fdef8854155dbc5235490ebb594101da4c9f +SHA1 (patch-Makefile.in) = f34fad0bb90d39f35aca8af6a44cf472addea4ee SHA1 (patch-c-posix-signals.c) = 151ccbad3f18e6a1333291db3d32499075dc141a SHA1 (patch-c-posix.c) = c6da2f4614af5ae0b96a70a93b5d308a3238c9c2 SHA1 (patch-configure) = 72e1add2e6c2af1ff8b2686e5e5f92511e4dcbfa diff --git a/devel/florist/patches/patch-Makefile.in b/devel/florist/patches/patch-Makefile.in index 494625e0238..474c1f55f35 100644 --- a/devel/florist/patches/patch-Makefile.in +++ b/devel/florist/patches/patch-Makefile.in @@ -1,9 +1,21 @@ -$NetBSD: patch-Makefile.in,v 1.2 2014/04/30 16:27:04 marino Exp $ +$NetBSD: patch-Makefile.in,v 1.3 2015/12/24 23:54:07 dholland Exp $ - Support DESTDIR and install files in standard locations + + - Don't hide the c-posix-signals output in a log file where one needs +access to the build machine to inspect it. Use tee instead. + - Support DESTDIR and install files in standard locations --- Makefile.in.orig 2012-05-10 13:32:06.000000000 +0000 +++ Makefile.in +@@ -107,7 +107,7 @@ $(C-POSIX_GENERATED): c-posix + posix-implementation-ok_signals.ads: c-posix-signals + rm -f posix-implementations-ok_signals.ads + # See file "c-posix-signals.log" for results of this step. +- ./c-posix-signals -nodefaults > c-posix-signals.log 2>&1 ++ ./c-posix-signals -nodefaults 2>&1 | tee c-posix-signals.log + + # + # Some other Ada source files are tailored to the @@ -187,8 +187,12 @@ distclean: # install floristlib |