Fix an issue where the Higan template directory was created as ~/Library/Application Supporthigan-ui/ rather than ~/Library/Application Support/higan-ui/ due to a typo in the install makefile target.
The second commit in this PR fixes an issue where templates were copied to ~/Library/Application Support/higan-ui/System/ where the higan-ui application was searching for templates in ~/Library/Application Support/higan-ui/
With this PR, higan-ui works as expected after running make install on a macOS target.
I'm guessing not a lot of people use macOS, fewer build it themselves, and even fewer use make install. Nevertheless, it's good to be sure it's working. :)
Fix an issue where the Higan template directory was created as
~/Library/Application Supporthigan-ui/
rather than~/Library/Application Support/higan-ui/
due to a typo in the install makefile target.The second commit in this PR fixes an issue where templates were copied to
~/Library/Application Support/higan-ui/System/
where the higan-ui application was searching for templates in~/Library/Application Support/higan-ui/
With this PR, higan-ui works as expected after running
make install
on a macOS target.