diff options
author | David Tardon <dtardon@redhat.com> | 2013-12-07 19:15:05 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-12-07 19:15:05 +0100 |
commit | 25a2fb21049506d442988660d1f81b2e61704f85 (patch) | |
tree | 281e58dd66a203ec3bc54f4a1cf3bee486cf5673 | |
parent | 88a243a3bbfa2207d8c01fa6ee068b6aba810cdc (diff) |
unxlng* is no more
Change-Id: Ia034c4a8cc034405c5ba4f7fc3a233a5efdadc74
-rw-r--r-- | bin/benchmark-document-loading | 2 | ||||
-rwxr-xr-x | bin/distro-install-desktop-integration | 2 | ||||
-rwxr-xr-x | bin/find-unusedheaders.pl | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/bin/benchmark-document-loading b/bin/benchmark-document-loading index f59ad7e76e2c..98d2855a83fa 100644 --- a/bin/benchmark-document-loading +++ b/bin/benchmark-document-loading @@ -29,7 +29,7 @@ # Simple script to load a bunch of documents and export them as Flat ODF # # Personally I run it like this: -# ~/lo/master-suse/instdir/unxlngx6/program/python ~/lo/master-suse/bin/benchmark-document-loading --soffice=path:/home/tml/lo/master-suse/instdir/unxlngx6/program/soffice --outdir=file://$PWD/out --userdir=file:///tmp/test $PWD/docs +# ~/lo/master-suse/instdir/program/python ~/lo/master-suse/bin/benchmark-document-loading --soffice=path:/home/tml/lo/master-suse/instdir/program/soffice --outdir=file://$PWD/out --userdir=file:///tmp/test $PWD/docs # import datetime diff --git a/bin/distro-install-desktop-integration b/bin/distro-install-desktop-integration index a06484603965..9589af6d36dd 100755 --- a/bin/distro-install-desktop-integration +++ b/bin/distro-install-desktop-integration @@ -95,7 +95,7 @@ add_wrapper() # install desktop integration from plain packages sysui_temp=`mktemp -t -d distro-pack-desktop-integration-XXXXXX` -cp -a workdir/unxlng*/CustomTarget/sysui/share/libreoffice/* "$sysui_temp" +cp -a workdir/CustomTarget/sysui/share/libreoffice/* "$sysui_temp" cp -a sysui/desktop/share/create_tree.sh "$sysui_temp" builddir=`pwd` cd $sysui_temp diff --git a/bin/find-unusedheaders.pl b/bin/find-unusedheaders.pl index c6d7bdab59c8..def1bd45abf9 100755 --- a/bin/find-unusedheaders.pl +++ b/bin/find-unusedheaders.pl @@ -12,8 +12,8 @@ use File::Find qw(finddepth); use File::Basename; # Find dirs in: -# workdir/unxlngx6.pro/Dep/CxxObject/ -# workdir/unxlngx6.pro/Dep/CObject +# workdir/Dep/CxxObject/ +# workdir/Dep/CObject # # Concat these files and compare them with the output of # `git ls-tree HEAD -r --name-only` and report files in the git ls-tree that aren't in the first. @@ -31,8 +31,8 @@ sub wanted { $data{$tmp} = $File::Find::name; } -finddepth(\&wanted, 'workdir/unxlngx6.pro/Dep/CxxObject'); -finddepth(\&wanted, 'workdir/unxlngx6.pro/Dep/CObject'); +finddepth(\&wanted, 'workdir/Dep/CxxObject'); +finddepth(\&wanted, 'workdir/Dep/CObject'); my @gitfiles = `git ls-tree HEAD -r --name-only`; |