Displaying 5 results from an estimated 5 matches for "g11067".
Did you mean:
511067
2009 Nov 19
1
[PATCH libguestfs] syntax-check: expand TABs in generator.ml
...- "=head1 DESCRIPTION\n\n" ^
- longdesc ^ warnings ^ describe_alias);
+ "=head1 DESCRIPTION\n\n" ^
+ longdesc ^ warnings ^ describe_alias);
pr " else\n"
) all_functions;
pr " display_builtin_command (cmd);\n";
--
1.6.5.3.433.g11067
2009 Nov 20
1
[PATCH libguestfs] maint: remove unnecessary include of openat.h
...on/realpath.c b/daemon/realpath.c
index 17e74ea..750cadb 100644
--- a/daemon/realpath.c
+++ b/daemon/realpath.c
@@ -27,8 +27,6 @@
#include <sys/types.h>
#include <dirent.h>
-#include "openat.h"
-
#include "daemon.h"
#include "actions.h"
--
1.6.5.3.433.g11067
2009 Nov 20
1
[PATCH libguestfs] build: make autogen.sh update .git-module-status, as it should
...en switching branches), we also rerun ./bootstrap.
curr_status=.git-module-status
-t=$(git submodule status)
+t=$(git submodule status|sed 's/.//;s/ .*//')
if test "$t" = "$(cat $curr_status 2>/dev/null)"; then
: # good, it's up to date
else
--
1.6.5.3.433.g11067
2009 Nov 20
1
[PATCH libguestfs] build: correct sed transformation to work also on .git-module-status
...s
+ # b653eda3ac4864de205419d9f41eec267cb89eeb
+ _submodule_hash = sed 's/^[ -]//;s/ .*//'
_update_required := $(shell \
actual=$$(git submodule status | $(_submodule_hash)); \
stamp="$$($(_submodule_hash) $(_curr_status) 2>/dev/null)"; \
--
1.6.5.3.433.g11067
2009 Nov 20
1
fix new failures from latest-from-gnulib syntax-check
...unlink (tmpf);
unlink (isof);
- exit (1);
+ exit (EXIT_FAILURE);
}
if (write (fd, "\0", 1) == -1) {
@@ -432,7 +432,7 @@ make_files (void)
close (fd);
unlink (tmpf);
unlink (isof);
- exit (1);
+ exit (EXIT_FAILURE);
}
close (fd);
--
1.6.5.3.433.g11067
>From f429aaad4910fdee102e0da9ec869cb4502d3153 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Fri, 20 Nov 2009 12:15:14 +0100
Subject: [PATCH libguestfs 2/3] maint: use EXIT_SUCCESS and EXIT_FAILURE, not 0 and 1 in "usage", too
Convert by running th...