mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
Merge pull request #513 from stikonas/rm
Add -f flag to some calls to rm to avoid stalling in interactive mode.
This commit is contained in:
commit
59b5178a5f
6 changed files with 7 additions and 7 deletions
|
|
@ -6,7 +6,7 @@ src_prepare() {
|
|||
rm bin/autoconf.in
|
||||
rm doc/*.info
|
||||
rm man/*.1
|
||||
rm tests/*.at
|
||||
rm -f tests/*.at
|
||||
|
||||
# Do not use pregenerated manpages
|
||||
sed -i '/SUBDIRS/s/ man//' Makefile.am
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
src_prepare() {
|
||||
rm doc/*.info
|
||||
rm man/*.1
|
||||
rm tests/*.at
|
||||
rm -f tests/*.at
|
||||
sed -i -e '/AC_PROG_GREP/d' -e '/AC_PROG_SED/d' configure.ac
|
||||
|
||||
AUTOMAKE=automake-1.8 ACLOCAL=aclocal-1.8 AUTOM4TE=autom4te-2.59 AUTOCONF=autoconf-2.59 autoreconf-2.59 -f
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
src_prepare() {
|
||||
rm doc/*.info
|
||||
rm man/*.1
|
||||
rm tests/*.at
|
||||
rm -f tests/*.at
|
||||
|
||||
AUTOMAKE=automake-1.10 ACLOCAL=aclocal-1.10 AUTOM4TE=autom4te-2.61 AUTOCONF=autoconf-2.61 autoreconf-2.61 -f
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
src_prepare() {
|
||||
rm doc/*.info
|
||||
rm man/*.1
|
||||
rm tests/*.at
|
||||
rm -f tests/*.at
|
||||
AUTOMAKE=automake-1.11 ACLOCAL=aclocal-1.11 autoreconf-2.64 -f
|
||||
|
||||
# Install autoconf data files into versioned directory
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ src_prepare() {
|
|||
touch config.h
|
||||
|
||||
# Rebuild pregenerated file
|
||||
rm src/false.c
|
||||
rm -f src/false.c
|
||||
rm src/dircolors.h
|
||||
rm src/wheel.h
|
||||
|
||||
|
|
|
|||
|
|
@ -28,10 +28,10 @@ src_prepare() {
|
|||
perl warnings.pl
|
||||
|
||||
# Regenerate prebuilt perl files
|
||||
rm -r lib/unicode/Is lib/unicode/In lib/unicode/To lib/unicode/*.pl
|
||||
rm -rf lib/unicode/Is lib/unicode/In lib/unicode/To lib/unicode/*.pl
|
||||
|
||||
# Manpages
|
||||
rm lib/Pod/Man.pm
|
||||
rm -f lib/Pod/Man.pm
|
||||
|
||||
# Workaround for some linking problems, remove if possible
|
||||
sed -i 's/perl_call_method/Perl_call_method/' ext/Data/Dumper/Dumper.xs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue