You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2023/03/07 10:59:07 UTC

[openoffice] 01/01: Update makedepn

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch Pilot-Pirx-grep
in repository https://gitbox.apache.org/repos/asf/openoffice.git

commit e47eaa6440a59a8c194e4803411f147a9787736a
Author: Matthias Seidel <ms...@apache.org>
AuthorDate: Tue Mar 7 11:59:01 2023 +0100

    Update makedepn
---
 main/solenv/bin/makedepn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main/solenv/bin/makedepn b/main/solenv/bin/makedepn
index bd73e3458f..a68d4998be 100755
--- a/main/solenv/bin/makedepn
+++ b/main/solenv/bin/makedepn
@@ -24,7 +24,7 @@ if [ -z "$1" ]; then
 fi
 infile=`echo "$1" | sed 's/^@//'`
 for i in `cat "$infile"`; do
-  i=`echo "$i" | fgrep -- "-O:" | awk -F: '{print $2}'`
+  i=`echo "$i" | grep -F -- "-O:" | awk -F: '{print $2}'`
   if [ ! -z "$i" ]; then
     echo "#" > "$i"
     exit 0;