diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-02 06:24:00 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-09-02 06:24:00 +0000 |
commit | f6c7378f08ee2ccd7b63c13d45734e85075aec70 (patch) | |
tree | 0e00354139168f1572a307f0bd096cd032a9cc42 /deskutils/gdesklets/files | |
parent | 21a4db007b7a7f82b034cedce2150882ca1aeee8 (diff) |
Notes
Diffstat (limited to 'deskutils/gdesklets/files')
-rw-r--r-- | deskutils/gdesklets/files/patch-configure | 10 | ||||
-rw-r--r-- | deskutils/gdesklets/files/patch-locale::install_locales.py | 11 |
2 files changed, 21 insertions, 0 deletions
diff --git a/deskutils/gdesklets/files/patch-configure b/deskutils/gdesklets/files/patch-configure new file mode 100644 index 000000000000..6fb8f7156838 --- /dev/null +++ b/deskutils/gdesklets/files/patch-configure @@ -0,0 +1,10 @@ +--- configure.orig Tue Sep 2 01:50:56 2003 ++++ configure Tue Sep 2 01:51:56 2003 +@@ -7795,6 +7795,7 @@ + + # This can be used to rebuild libtool when needed + LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS + + # Always use our own libtool. + LIBTOOL='$(SHELL) $(top_builddir)/libtool' 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") |