diff options
| -rw-r--r-- | build.go | 3 | ||||
| -rw-r--r-- | readControlFile.go | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -256,6 +256,9 @@ func writeDebianControlFile(repo *gitpb.Repo) bool { fmt.Fprintln(cf, "Package:", repo.Control["Package"]) // c.Package.String()) fmt.Fprintln(cf, "Source:", repo.Control["Source"]) // c.Source.String()) fmt.Fprintln(cf, "Version:", repo.Control["Version"]) + if repo.Control["Architecture"] == "" { + repo.Control["Architecture"] = "amd64" + } fmt.Fprintln(cf, "Architecture:", repo.Control["Architecture"]) // c.Architecture.String()) writeControlVar(cf, repo, "Depends") diff --git a/readControlFile.go b/readControlFile.go index 6518ca1..d6a4c0d 100644 --- a/readControlFile.go +++ b/readControlFile.go @@ -135,6 +135,7 @@ func readControlFile(repo *gitpb.Repo) error { } */ } + pairs["Architecture"] = "amd64" // TODO: figure this out if err := scanner.Err(); err != nil { return err |
