mirror of
https://github.com/moparisthebest/pacman
synced 2025-03-03 02:41:53 -05:00
Merge branch 'maint'
This commit is contained in:
commit
3f7cc83e0d
@ -1478,7 +1478,7 @@ if [ ! $(type -t gettext) ]; then
|
|||||||
}
|
}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ARGLIST=$@
|
ARGLIST=("$@")
|
||||||
|
|
||||||
# Parse Command Line Options.
|
# Parse Command Line Options.
|
||||||
OPT_SHORT="AcCdefFghiLmop:rRsV"
|
OPT_SHORT="AcCdefFghiLmop:rRsV"
|
||||||
@ -1901,9 +1901,9 @@ else
|
|||||||
msg "$(gettext "Entering fakeroot environment...")"
|
msg "$(gettext "Entering fakeroot environment...")"
|
||||||
|
|
||||||
if [ -n "$newpkgver" ]; then
|
if [ -n "$newpkgver" ]; then
|
||||||
fakeroot -- $0 --forcever $newpkgver -F $ARGLIST || exit $?
|
fakeroot -- $0 --forcever $newpkgver -F "${ARGLIST[@]}" || exit $?
|
||||||
else
|
else
|
||||||
fakeroot -- $0 -F $ARGLIST || exit $?
|
fakeroot -- $0 -F "${ARGLIST[@]}" || exit $?
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user