mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-22 14:42:49 +02:00
qpkg/qpkg.c: tighten detection of inconsistent use of Filename:
- qpkg/qpkg.c (find_prereq): instead of skipping nameless prerequisites, assert that these packages have a name
This commit is contained in:
parent
2c953a5d1a
commit
89223833f1
@ -14,6 +14,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
#include "jrb.h"
|
#include "jrb.h"
|
||||||
#include "id.h"
|
#include "id.h"
|
||||||
@ -103,10 +104,9 @@ static void find_prereq(const char *name, const char *version)
|
|||||||
const char *file = (*pkgs)->filename;
|
const char *file = (*pkgs)->filename;
|
||||||
const char *end;
|
const char *end;
|
||||||
|
|
||||||
if (file) {
|
assert(file);
|
||||||
end = strchr(file, '\n');
|
end = strchr(file, '\n');
|
||||||
printf("%.*s\n", (int) (end-file), file);
|
printf("%.*s\n", (int) (end-file), file);
|
||||||
}
|
|
||||||
pkgs++;
|
pkgs++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user