Skip to content

Commit

Permalink
standardized prepare_obs, fixed default.configure
Browse files Browse the repository at this point in the history
  • Loading branch information
mbhangui committed Jun 16, 2024
1 parent 346d1f8 commit 0ad416c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion indimail-spamfilter-x/default.configure
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ if [ ! -d m4 -a -f configure.ac -a -f Makefile.am ] ; then
mkdir -p m4
fi
echo "default.configure called with $# args [$*]"
prefix=/usr
if [ ! -f conf-release ] ; then
echo 1.1 > conf-release
fi
Expand Down
2 changes: 0 additions & 2 deletions indimail-x/default.configure
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ case "$SYSTEM" in
prefix=/usr/local
sbindir=/usr/local/sbin
sysconfdir=/usr/local/etc/indimail
sysconfdir=/usr/local/etc/indimail
mandir=/usr/local/man
servicedir=/usr/local/etc/indimail/sv
base_path=/home/mail
Expand Down Expand Up @@ -58,7 +57,6 @@ case "$SYSTEM" in
*)
prefix=/usr
sbindir=/usr/sbin
sysconfdir=/usr/local/etc/indimail
sysconfdir=/etc/indimail
mandir=/usr/man
servicedir=/service
Expand Down
6 changes: 2 additions & 4 deletions prepare_obs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ if [ -f $name.packages ] ; then
echo cleaning $pkg_name-$ver
set +e
make clean && make distclean >/dev/null 2>&1
#find . -type d \( -name autom4te.cache -o -name .deps \) -exec /bin/rm -rf {} +
find . -type d -name autom4te.cache -exec /bin/rm -rf '{}' \+
find . -type d -name autom4te.cache -exec /bin/rm -rf '{}' '+'
set -e
fi
# remove debian directory from archive
Expand Down Expand Up @@ -159,8 +158,7 @@ if [ -f Makefile ] ; then
echo cleaning $name-$version
set +e
make clean && make distclean >/dev/null 2>&1
#find . -type d \( -name autom4te.cache -o -name .deps \) -exec /bin/rm -rf {} +
find . -type d -name autom4te.cache -exec /bin/rm -rf '{}' \+
find . -type d -name autom4te.cache -exec /bin/rm -rf '{}' '+'
set -e
fi

Expand Down

0 comments on commit 0ad416c

Please sign in to comment.