Fix fdo#49720: Dropped unnecessary "sh -c" from popen call

Change-Id: I5de4ce4e26d995c447c99c8558f621dba6cdf110
This commit is contained in:
Stephan Bergmann 2012-05-10 13:45:10 +02:00
parent 5386b7633d
commit a50a33c3a7

View file

@ -262,7 +262,7 @@ PaperInfo PaperInfo::getSystemDefaultPaper()
// try libpaper
// #i78617# workaround missing paperconf command
FILE* pPipe = popen( "sh -c paperconf 2>/dev/null", "r" );
FILE* pPipe = popen( "paperconf 2>/dev/null", "r" );
if( pPipe )
{
Paper ePaper = PAPER_USER;