diff options
Diffstat (limited to 'app-misc/rmlint/files')
-rw-r--r-- | app-misc/rmlint/files/rmlint-2.10.1-fix-gui-install.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app-misc/rmlint/files/rmlint-2.10.1-fix-gui-install.patch b/app-misc/rmlint/files/rmlint-2.10.1-fix-gui-install.patch new file mode 100644 index 000000000000..2ae13cd4abb0 --- /dev/null +++ b/app-misc/rmlint/files/rmlint-2.10.1-fix-gui-install.patch @@ -0,0 +1,11 @@ +--- a/gui/setup.py ++++ b/gui/setup.py +@@ -19,7 +19,7 @@ def read_version(): + with open('../.version', 'r') as handle: + version_string = handle.read() + +- return version_string.strip() ++ return version_string.split()[0] + + class install_glib_resources(install): + user_options = install.user_options + [ |