mirror of https://github.com/perkeep/perkeep.git
make.go: don't build mattn/go-sqlite3 if sqlite3 isn't available
Tested with: $ PKG_CONFIG_LIBDIR=/xx go run make.go Change-Id: Idfc6bd703261e5bc39378c889d6f49cc4af017d1
This commit is contained in:
parent
e6496b45d8
commit
c61a3dfdf7
11
make.go
11
make.go
|
@ -143,7 +143,7 @@ func main() {
|
|||
for _, dir := range goDirs {
|
||||
oriPath := filepath.Join(camRoot, filepath.FromSlash(dir))
|
||||
dstPath := buildSrcPath(dir)
|
||||
if maxMod, err := mirrorDir(oriPath, dstPath); err != nil {
|
||||
if maxMod, err := mirrorDir(oriPath, dstPath, mirrorOpts{sqlite: sql}); err != nil {
|
||||
log.Fatalf("Error while mirroring %s to %s: %v", oriPath, dstPath, err)
|
||||
} else {
|
||||
if maxMod.After(latestSrcMod) {
|
||||
|
@ -475,13 +475,20 @@ func verifyGoVersion() {
|
|||
}
|
||||
}
|
||||
|
||||
func mirrorDir(src, dst string) (maxMod time.Time, err error) {
|
||||
type mirrorOpts struct {
|
||||
sqlite bool // want sqlite package?
|
||||
}
|
||||
|
||||
func mirrorDir(src, dst string, opts mirrorOpts) (maxMod time.Time, err error) {
|
||||
err = filepath.Walk(src, func(path string, fi os.FileInfo, err error) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
base := fi.Name()
|
||||
if fi.IsDir() {
|
||||
if !opts.sqlite && strings.Contains(path, "mattn") && strings.Contains(path, "go-sqlite3") {
|
||||
return filepath.SkipDir
|
||||
}
|
||||
return nil
|
||||
}
|
||||
if strings.HasPrefix(base, ".#") || !rxMirrored.MatchString(base) {
|
||||
|
|
Loading…
Reference in New Issue