diff options
Diffstat (limited to 'deskutils/gdesklets/files/patch-locale::install_locales.py')
-rw-r--r-- | deskutils/gdesklets/files/patch-locale::install_locales.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deskutils/gdesklets/files/patch-locale::install_locales.py b/deskutils/gdesklets/files/patch-locale::install_locales.py new file mode 100644 index 000000000000..b3d026917b83 --- /dev/null +++ b/deskutils/gdesklets/files/patch-locale::install_locales.py @@ -0,0 +1,11 @@ +--- locale/install_locales.py.orig Sun Aug 31 23:07:07 2003 ++++ locale/install_locales.py Sun Aug 31 23:07:33 2003 +@@ -17,7 +17,7 @@ + file = os.path.basename(source) + lang, ext = os.path.splitext(file) + fulltargetpath = os.path.join(targetpath, lang, "LC_MESSAGES") +- os.system("mkdir --parents " + fulltargetpath) ++ os.system("mkdir -p " + fulltargetpath) + + print (source) + mofile = os.path.join(fulltargetpath, domain + ".mo") |