numactl/revert_date_in_numastat.patch
Thomas Renninger beb2848482 - Update to version 2.0.9:
- 130207 Add a prototype for numa_bitmask_weight (Cliff W.)
- 130725 Fix hubstats huge pages bug, version number, man page (Bill Gray)
- 130726 Disable the regress-io test (Cliff W.)
- 130730 Fix typos in numactl man page; add short opts to --help
  (Petr Holasek)
- 130906 numactl: option --all/-a added for policy settings (Petr Holasek)
- 130906 libnuma: new function numa_run_on_node_mask_all (Petr Holasek)

OBS-URL: https://build.opensuse.org/package/show/Base:System/numactl?expand=0&rev=40
2013-10-09 14:42:19 +00:00

25 lines
693 B
Diff

numactl: Revert __DATE__ in numastat
or this will trigger unnecessary, constant rebuilds in build
service environments.
Signed-off-by: Thomas Renninger <trenn@suse.de>
---
numastat.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: numactl-2.0.9/numastat.c
===================================================================
--- numactl-2.0.9.orig/numastat.c
+++ numactl-2.0.9/numastat.c
@@ -725,7 +725,7 @@ double huge_page_size_in_bytes = 0;
void display_version_and_exit() {
char *version_string = "20130723";
- printf("%s version: %s: %s\n", prog_name, version_string, __DATE__);
+ printf("%s version: %s\n", prog_name, version_string);
exit(EXIT_SUCCESS);
}