diff options
Diffstat (limited to 'recipes/build-tools/gas-preprocessor.recipe')
-rw-r--r-- | recipes/build-tools/gas-preprocessor.recipe | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/recipes/build-tools/gas-preprocessor.recipe b/recipes/build-tools/gas-preprocessor.recipe index 65f28bb..1315c4f 100644 --- a/recipes/build-tools/gas-preprocessor.recipe +++ b/recipes/build-tools/gas-preprocessor.recipe @@ -8,10 +8,12 @@ class Recipe(recipe.Recipe): version = '0.0.0' licenses = [License.GPLv2] btype = BuildType.CUSTOM - remotes = {'origin': 'git://github.com/yuvi/gas-preprocessor.git'} - commit = 'f4a42dc077144c5b481ec4534a4c99d0808a9b2f' + remotes = {'origin': 'git://github.com/ylatuya/gas-preprocessor.git'} + commit = 'origin/master' def install(self): + if not os.path.exists(os.path.join(self.config.prefix, 'bin')): + os.makedirs(os.path.join(self.config.prefix, 'bin')) shutil.copy (os.path.join(self.build_dir, 'gas-preprocessor.pl'), os.path.join(self.config.prefix, 'bin')) shell.call ('chmod +x %s' % |