#!/bin/sh #set -x glv_var="$1" glv_config="config_host.mk" if [ "$glv_var" = "--build" ] ; then glv_config="config_build.mk" shift elif [ "$glv_var" = "--host" ] ; then shift fi # full path, in case we export a "wrong" PATH test -n "$GREP" && glv_grep="$GREP" || glv_grep=$(command -v grep) test -n "$SED" && glv_sed="$SED" || glv_sed=$(command -v sed) while [ -n "$1" ] ; do glv_var="$1" shift glv_value=$("${glv_grep}" "^ *\(export *\)\?${glv_var}=" ${glv_config} | "${glv_sed}" -e 's/[^=]*=//') export ${glv_var}="${glv_value}" done unset glv_var unset glv_value unset glv_config unset glv_sed unset glv_grep ' onchange='this.form.submit();'> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/qa/uitest/autofilter/autofilterBugs.py
AgeCommit message (Expand)Author
2024-02-01tdf#158326 - Auto Filter: separate sorting and removing of duplicatesAndreas Heinisch
2022-12-19tdf#152082 ODS: fix import of Empty filter operatorTünde Tóth
2022-10-17tdf#132293 remove unused imports and variablesRakielle
2022-10-13tdf#125363, tdf#123095 - Use CaseTransliteration for autofilterAndreas Heinisch
2022-05-30sc uitests: Cleaning up unused variablestagezi