lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 15 Feb 2008 14:45:57 +0100 (CET)
From:	Jan Engelhardt <jengelh@...putergmbh.de>
To:	Roland McGrath <roland@...hat.com>
cc:	Ingo Molnar <mingo@...e.hu>, Priit Laes <plaes@...es.org>,
	linux-kernel@...r.kernel.org, Thomas Gleixner <tglx@...utronix.de>,
	Sam Ravnborg <sam@...nborg.org>
Subject: Re: REGRESSION: x86 vDSO: remove vdso-syms.o


On Feb 11 2008 15:29, Roland McGrath wrote:
>Sam might want to experiment with something like:
>
>	stdout_target = $(1) > $(@D)/.tmp_$(@F) && mv -f $(@D)/.tmp_$(@F) $@
>
>	cmd_foo = $(call stdout_target,blah | sed s/foo/bar/)
>
>to clean up all the places that would benefit from robust treatment for
>output files vs interrupted/erring make runs.

In most cases however, issuing ctrl+c signals make and make will
remove the output file.

Problematic indeed, "temp" could be left when ctrl+c is hit:
foo: bar
	generate-something <bar >temp;
	add-up <temp >foo;

What could work, temp being removed on ^C:
temp: bar
	generate-something <bar >temp;
foo: temp
	add-up <temp >foo;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ