diff --git a/contrib/proto.install b/contrib/proto.install index 4bf55280..074840e4 100644 --- a/contrib/proto.install +++ b/contrib/proto.install @@ -33,8 +33,4 @@ post_remove() { /bin/true } -op=$1 -shift -["$(type -t "$op")" = "function" ] && $op "$@" - # vim:set ts=2 sw=2 et: diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index 4bc0ce74..70e34d43 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -511,9 +511,6 @@ int _alpm_runscriptlet(const char *root, const char *installfn, goto cleanup; } - /* mark the scriptlet as executable */ - chmod(scriptfn, 0755); - /* chop off the root so we can find the tmpdir in the chroot */ scriptpath = scriptfn + strlen(root) - 1; @@ -538,10 +535,10 @@ int _alpm_runscriptlet(const char *root, const char *installfn, _alpm_log(PM_LOG_DEBUG, "executing %s script...\n", script); if(oldver) { - snprintf(cmdline, PATH_MAX, "%s %s %s %s", + snprintf(cmdline, PATH_MAX, ". %s; %s %s %s", scriptpath, script, ver, oldver); } else { - snprintf(cmdline, PATH_MAX, "%s %s %s", + snprintf(cmdline, PATH_MAX, ". %s; %s %s", scriptpath, script, ver); } _alpm_log(PM_LOG_DEBUG, "%s\n", cmdline);