Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jgsogo committed Aug 16, 2021
1 parent 8becd5e commit f96a866
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions recipes/nas/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,10 @@ def _configure_autotools(self):

def build(self):
with tools.chdir(self._source_subfolder):
env_build = AutoToolsBuildEnvironment(self)
self.run("imake -DUseInstalled -I{} -DUsrLibDir={}".format(os.path.join(self._user_info_build["xorg-cf-files"].CONFIG_PATH), os.path.join(self.package_folder, "lib")), run_environment=True)
autotools = self._configure_autotools()
with tools.environment_append(autotools.vars):
env_build.make(target="World")
autotools.make(target="World")

def package(self):
self.copy("LICENSE", dst="licenses")
Expand Down

0 comments on commit f96a866

Please sign in to comment.