From fce95492bdea68d754c84914a459bf3af93aa4dd Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Wed, 16 Aug 2017 13:30:01 +0200 Subject: [PATCH] Change invocation style for find-debuginfo.sh Using eval affects command line parsing in the shell script. Call the script directly, but do not quote $find_debuginfo_args, to splice its contents into the argument list. --- glibc.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/glibc.spec b/glibc.spec index 4da1088..403db62 100644 --- a/glibc.spec +++ b/glibc.spec @@ -1679,9 +1679,7 @@ find_debuginfo_args="$find_debuginfo_args \ %endif " %endif -eval /usr/lib/rpm/find-debuginfo.sh \ - "$find_debuginfo_args" \ - -o debuginfo.filelist +/usr/lib/rpm/find-debuginfo.sh $find_debuginfo_args -o debuginfo.filelist # List all of the *.a archives in the debug directory. list_debug_archives()