Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
cc1e3419
Commit
cc1e3419
authored
Aug 14, 2008
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't leave _info.NNNN files lying arond
parent
41069549
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
tools/create_dep_tar.c
tools/create_dep_tar.c
+1
-1
tools/namespacize.c
tools/namespacize.c
+2
-1
tools/run_tests.c
tools/run_tests.c
+1
-1
No files found.
tools/create_dep_tar.c
View file @
cc1e3419
...
...
@@ -81,7 +81,7 @@ int main(int argc, char *argv[])
printf
(
"creating tar ball of
\"
%s
\"\n
"
,
argv
[
1
]);
/* creating tar of the module dependencies */
deps
=
get_deps
(
NULL
,
argv
[
1
]);
deps
=
get_deps
(
talloc_autofree_context
()
,
argv
[
1
]);
if
(
deps
!=
NULL
)
create_tar
(
deps
,
argv
[
1
],
argv
[
2
]);
talloc_free
(
deps
);
...
...
tools/namespacize.c
View file @
cc1e3419
...
...
@@ -476,7 +476,7 @@ static char *parent_dir(const void *ctx, const char *dir)
static
void
adjust_dir
(
const
char
*
dir
)
{
char
*
parent
=
parent_dir
(
NULL
,
dir
);
char
*
parent
=
parent_dir
(
talloc_autofree_context
()
,
dir
);
char
**
deps
;
verbose
(
"Adjusting %s
\n
"
,
dir
);
...
...
@@ -497,6 +497,7 @@ static void adjust_dir(const char *dir)
talloc_free
(
depdir
);
}
verbose_unindent
();
talloc_free
(
parent
);
}
static
void
adjust_dependents
(
const
char
*
dir
)
...
...
tools/run_tests.c
View file @
cc1e3419
...
...
@@ -106,7 +106,7 @@ static int build(const char *dir, const char *name, int fail)
char
*
externals
=
talloc_strdup
(
name
,
""
);
char
**
deps
;
for
(
deps
=
get_deps
(
objs
,
dir
);
*
deps
;
deps
++
)
{
for
(
deps
=
get_deps
(
talloc_autofree_context
()
,
dir
);
*
deps
;
deps
++
)
{
if
(
!
strstarts
(
*
deps
,
"ccan/"
))
continue
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment