call finish_filelists where apprpriate
authorroot <devnull@localhost>
Mon, 14 Apr 1997 20:05:12 +0000 (20:05 +0000)
committerroot <devnull@localhost>
Mon, 14 Apr 1997 20:05:12 +0000 (20:05 +0000)
CVS patchset: 1534
CVS date: 1997/04/14 20:05:12

build/build.c

index 984ee02..62b0dad 100644 (file)
@@ -13,6 +13,7 @@
 #include <limits.h>
 
 #include "build.h"
+#include "files.h"
 #include "header.h"
 #include "spec.h"
 #include "specP.h"
@@ -639,6 +640,9 @@ int execInstall(Spec s, int test)
     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);
 }
 
@@ -649,6 +653,11 @@ int execClean(Spec s)
 
 int verifyList(Spec s)
 {
+    int res;
+
+    if ((res = finish_filelists(s))) {
+       return res;
+    }
     return packageBinaries(s, NULL, PACK_NOPACKAGE);
 }