diff options
author | Bastien Orivel <[email protected]> | 2018-04-06 10:28:00 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-04-09 08:32:45 -0600 |
commit | 42c2f5b579caf487069daca85a3fd77f9fd00304 (patch) | |
tree | 9438615563c902436b9845d39fe3e150bb511414 /src/compiler/Makefile.nir.am | |
parent | 04e609f1f8cf633f33b20de7f8c603e301379b74 (diff) |
nir: Fix a typo in src/compiler/Makefile.nir.am
Since 31d91f019b58ca362c05db1fd0c75fedd169cd7b, the makefile tries to
find the file SConstript.spirv instead of SConscript.spirv which breaks
the make dist command.
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.nir.am')
-rw-r--r-- | src/compiler/Makefile.nir.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/Makefile.nir.am b/src/compiler/Makefile.nir.am index 27dc129e57b..4ccd7f36be9 100644 --- a/src/compiler/Makefile.nir.am +++ b/src/compiler/Makefile.nir.am @@ -101,4 +101,4 @@ EXTRA_DIST += \ nir/tests \ nir/README \ SConscript.nir \ - SConstript.spirv + SConscript.spirv |