]> git.saurik.com Git - apt.git/blobdiff - apt-inst/contrib/extracttar.cc
* remove all the remaining #pragma implementation
[apt.git] / apt-inst / contrib / extracttar.cc
index d6da802fec33c239e424dbb7703e8063fa0dae8c..8a535967f282eedd2892340deede5f77ebab12a3 100644 (file)
@@ -16,9 +16,6 @@
    ##################################################################### */
                                                                        /*}}}*/
 // Include Files                                                       /*{{{*/
-#ifdef __GNUG__
-#pragma implementation "apt-pkg/extracttar.h"
-#endif
 #include <apt-pkg/extracttar.h>
 
 #include <apt-pkg/error.h>
@@ -136,7 +133,8 @@ bool ExtractTar::StartGzip()
       
       const char *Args[3];
       string confvar = string("dir::bin::") + DecompressProg;
-      Args[0] = _config->Find(confvar.c_str(),DecompressProg.c_str()).c_str();
+      string argv0 = _config->Find(confvar.c_str(),DecompressProg.c_str());
+      Args[0] = argv0.c_str();
       Args[1] = "-d";
       Args[2] = 0;
       execvp(Args[0],(char **)Args);