소스 검색

fix quoting problem with opt_N

Michael van Elst 22 년 전
부모
커밋
8ae80bf4c2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      openpkg-tool/openpkg-build.pl

+ 1 - 1
openpkg-tool/openpkg-build.pl

@@ -259,7 +259,7 @@ sub get_config ()
 {
     my($c,@q,@g);
 
-    $c = run("$RPM --eval \"%{_rpmdir} %{_rpmfilename} %{_target_os} %{_target_cpu} %{_prefix}\"");
+    $c = run("$RPM --eval '%{_rpmdir} %{_rpmfilename} %{_target_os} %{_target_cpu} %{_prefix}'");
     chomp($c);
     (@q) = split(/\s+/,$c);