(options []string)
| 148 | } |
| 149 | |
| 150 | func (q qmake) Install(options []string) error { |
| 151 | // Execute install. |
| 152 | title := fmt.Sprintf("[install %s]", q.PortConfig.nameVersion()) |
| 153 | executor := cmd.NewExecutor(title, "make install") |
| 154 | executor.SetLogPath(q.getLogPath("install")) |
| 155 | executor.SetWorkDir(q.PortConfig.BuildDir) |
| 156 | if err := executor.Execute(); err != nil { |
| 157 | return err |
| 158 | } |
| 159 | |
| 160 | return nil |
| 161 | } |
nothing calls this directly
no test coverage detected