use "cp -pr" not "cp -ar"
authorewt <devnull@localhost>
Thu, 16 Jan 1997 17:03:58 +0000 (17:03 +0000)
committerewt <devnull@localhost>
Thu, 16 Jan 1997 17:03:58 +0000 (17:03 +0000)
CVS patchset: 1290
CVS date: 1997/01/16 17:03:58

build/spec.c

index 3ddf980..7a991bc 100644 (file)
@@ -796,7 +796,7 @@ static void parseForDocFiles(struct PackageRec *package, char *line)
     }
     
     appendLineStringBuf(package->doc, "mkdir -p $DOCDIR");
-    appendStringBuf(package->doc, "cp -ar ");
+    appendStringBuf(package->doc, "cp -pr ");
     appendStringBuf(package->doc, line);
     appendLineStringBuf(package->doc, " $DOCDIR");
 }