Skip to content

Commit

Permalink
* - fix a small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Lains committed Nov 8, 2018
1 parent ae2784c commit 415bc6b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ executable(
)

# Add in a post install script
meson.add_install_script('meson/post_install.py')
meson.add_install_script('/meson/post_install.py')

# Add subfolders for Meson to look
subdir('data')
Expand Down
Empty file modified meson/post_install.py
100644 → 100755
Empty file.

3 comments on commit 415bc6b

@decathorpe
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The addition of that leading slash is a mistake, it leads to compilation failures.

@lainsce
Copy link
Owner

@lainsce lainsce commented on 415bc6b Nov 8, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was trying to fix whatever it was that Houston was complaining about not finding the file...

@decathorpe
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That probably was just a new/more strict version of meson complaining about the missing executable bit. At least that fixed it for me when I encountered the same problem once.

Please sign in to comment.