diff --git a/README.md b/README.md index 7c33bf8f71cbf4c0d19c6235d5e89ae35a95862b..9cbc62f0652616e406da56558e7e9424e2829e01 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Ring installer uses python3. Please make sure it is installed before running it. Build and install all the dependencies: - ./ring-build --dependencies + ./make-ring.py --dependencies #### Linux Your distro package manager will be used. diff --git a/make-ring.py b/make-ring.py index 0e07ff761e66378712377416c707682bed7c3650..4946b4a06665f6d8bf8503d4c7a989d396f314f6 100755 --- a/make-ring.py +++ b/make-ring.py @@ -141,7 +141,7 @@ def run_install(args): install_args += " -c client-macosx" execute_script(["CONFIGURE_FLAGS='--without-dbus' ./scripts/install.sh " + install_args]) else: - install_args += '-c client-gnome' + install_args += ' -c client-gnome' execute_script(["./scripts/install.sh " + install_args]) @@ -286,7 +286,7 @@ def choose_distribution(): for line in f: k,v = line.split("=") if k.strip() == 'NAME': - return v.strip() + return v.strip().replace('"','') elif system == "darwin": return 'OSX'