Browse Source

dump: fixed to disable rmt command if tar package is installed

user/karasz/next/updates
Christian Wiese 15 years ago
parent
commit
536bddbdca
  1. 7
      base/dump/dump.conf

7
base/dump/dump.conf

@ -2,6 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# #
# Filename: package/.../dump/dump.conf # Filename: package/.../dump/dump.conf
# Copyright (C) 2010 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project # Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf # Copyright (C) 1998 - 2003 Clifford Wolf
# #
@ -15,9 +16,13 @@
unset LD unset LD
confopt="$confopt --enable-static \ confopt="$confopt --enable-static \
--enable-rmt \
--with-manowner=root \ --with-manowner=root \
--with-mangrp=root \ --with-mangrp=root \
--with-bingrp=root \ --with-bingrp=root \
--with-binmode=0755 \ --with-binmode=0755 \
--with-manmode=644" --with-manmode=644"
if pkginstalled tar; then
echo_status "Disabling rmt command (found rmt provided by tar)"
var_append extraconfopt ' ' "--disable-rmt"
fi

Loading…
Cancel
Save