diff options
author | Jay Freeman <saurik@saurik.com> | 2009-04-09 09:51:32 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2009-04-09 09:51:32 +0000 |
commit | ff5de10df4d82361318df1f52c870aacb2baecaf (patch) | |
tree | 00465a7c4d998bc74d922f9160c80283c29a52ae /data | |
parent | 7b75f2c2d26fd79acedf5ced648932de37eeebd8 (diff) |
I forgot to commit this while having that fight with TJ. :(
git-svn-id: http://svn.telesphoreo.org/trunk@570 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data')
-rw-r--r-- | data/dpkg/extrainst.diff | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/data/dpkg/extrainst.diff b/data/dpkg/extrainst.diff new file mode 100644 index 000000000..369d79a3a --- /dev/null +++ b/data/dpkg/extrainst.diff @@ -0,0 +1,31 @@ +diff -ru dpkg-1.13.25/lib/dpkg.h dpkg-1.13.25+iPhone/lib/dpkg.h +--- dpkg-1.13.25/lib/dpkg.h 2006-11-24 04:08:31.000000000 +0000 ++++ dpkg-1.13.25+iPhone/lib/dpkg.h 2008-09-03 07:28:26.000000000 +0000 +@@ -82,6 +82,7 @@ + #define PRERMFILE "prerm" + #define POSTRMFILE "postrm" + #define LISTFILE "list" ++#define EXTRAINSTFILE "extrainst_" + + #define STATUSFILE "status" + #define AVAILFILE "available" +diff -ru dpkg-1.13.25/src/processarc.c dpkg-1.13.25+iPhone/src/processarc.c +--- dpkg-1.13.25/src/processarc.c 2006-06-29 00:25:08.000000000 +0000 ++++ dpkg-1.13.25+iPhone/src/processarc.c 2008-09-03 07:28:33.000000000 +0000 +@@ -569,6 +569,16 @@ + close(tc.backendpipe); + waitsubproc(c1,BACKEND " --fsys-tarfile",PROCPIPE); + ++ if (oldversionstatus == stat_notinstalled || oldversionstatus == stat_configfiles) { ++ maintainer_script_new(pkg->name, EXTRAINSTFILE, "extra-installation", cidir, cidirrest, ++ "install", (char *)0); ++ } else { ++ maintainer_script_new(pkg->name, EXTRAINSTFILE, "extra-installation", cidir, cidirrest, ++ "upgrade", versiondescribe(&pkg->installed.version, ++ vdew_nonambig), ++ (char *)0); ++ } ++ + if (oldversionstatus == stat_halfinstalled || oldversionstatus == stat_unpacked) { + /* Packages that were in `installed' and `postinstfailed' have been reduced + * to `unpacked' by now, by the running of the prerm script. |