CVS patchset: 1534
CVS date: 1997/04/14 20:05:12
#include <limits.h>
#include "build.h"
+#include "files.h"
#include "header.h"
#include "spec.h"
#include "specP.h"
if ((res = execPart(s, getStringBuf(s->install), "%install", 1, test))) {
return res;
}
+ if ((res = finish_filelists(s))) {
+ return res;
+ }
return execPart(s, getStringBuf(s->doc), "special doc", 1, test);
}
int verifyList(Spec s)
{
+ int res;
+
+ if ((res = finish_filelists(s))) {
+ return res;
+ }
return packageBinaries(s, NULL, PACK_NOPACKAGE);
}