diff options
author | rsiddall <rsiddall> | 2009-04-20 20:57:31 +0000 |
---|---|---|
committer | rsiddall <rsiddall> | 2009-04-20 20:57:31 +0000 |
commit | 63bfee7f715403c6ff5d145c09b730928fce2100 (patch) | |
tree | e39276acd57a821b818692267a234d4e34946492 /rpm | |
parent | d1f55c07f2a8a0d0e62c7141807803cf1c85f528 (diff) |
Acceptance testing of the RPM build system flushed out a place where /bin/rm
stops waiting for input if you're /bin/su as the user doing the build.
Added a -f flag to stop it waiting for input.
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/freeside.spec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpm/freeside.spec b/rpm/freeside.spec index 306008924..172b458b3 100644 --- a/rpm/freeside.spec +++ b/rpm/freeside.spec @@ -135,7 +135,7 @@ For security reasons, it is set to conflict with %{name} as you should not insta %prep %setup -q -%{__rm} bin/pod2x # Only useful to Ivan Kohler now +%{__rm} -f bin/pod2x # Only useful to Ivan Kohler now perl -pi -e 's|/usr/local/bin|%{_bindir}|g' FS/Makefile.PL # RPM handles changing file ownership, so Makefile shouldn't perl -pi -e 's/\s+-o\s+(freeside|root)(\s+-g\s+\$\{\w+\})?\s+/ /g' Makefile |