diff options
author | ivan <ivan> | 2010-07-08 23:53:45 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-07-08 23:53:45 +0000 |
commit | 6c674902ea0fb10bfa35a3f3eef70c9ca76feaad (patch) | |
tree | d1571834ca0138f607d2afaef8236370d549aa5d /rpm/build/expect-addsign | |
parent | b95fa45c4d419b1898deba7e3a6ea6cc9d3b498f (diff) |
32 bit and make the repo stuff work, RT#8190
Diffstat (limited to 'rpm/build/expect-addsign')
-rwxr-xr-x | rpm/build/expect-addsign | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/rpm/build/expect-addsign b/rpm/build/expect-addsign index ad5e4f600..5634ed47b 100755 --- a/rpm/build/expect-addsign +++ b/rpm/build/expect-addsign @@ -1,7 +1,8 @@ #!/usr/bin/expect set p "not our actual passphrase" set f [lindex $argv 0] -spawn /bin/rpm --resign $f +#spawn /bin/rpm --resign $f +spawn /usr/bin/rpm --resign $f expect "Enter pass phrase:" send -- "$p\r" expect eof |