Use -merge for xrdb (#808919)
---
firstboot/frontend.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/firstboot/frontend.py b/firstboot/frontend.py
index 1d6d93d..2735303 100644
--- a/firstboot/frontend.py
+++ b/firstboot/frontend.py
@@ -132,7 +132,7 @@ class Frontend:
def merge_xres(self):
if os.access(XRES, os.R_OK):
log.info('merging the Xresources')
- p = subprocess.Popen(['xrdb', '--merge', XRES])
+ p = subprocess.Popen(['xrdb', '-merge', XRES])
p.wait()
def kill(self):
--
1.7.5.4
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|