diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/makepkg.sh.in | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 880e7781..1720e647 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -362,11 +362,11 @@ download_file() {  	# replace %o by the temporary dlfile if it exists  	if [[ ${cmdline[*]} = *%o* ]]; then  		dlfile=$filename.part -		cmdline=("${cmdline[@]//%o/"$dlfile"}") +		cmdline=("${cmdline[@]//%o/$dlfile}")  	fi  	# add the URL, either in place of %u or at the end  	if [[ ${cmdline[*]} = *%u* ]]; then -		cmdline=("${cmdline[@]//%u/"$url"}") +		cmdline=("${cmdline[@]//%u/$url}")  	else  		cmdline+=("$url")  	fi @@ -1833,7 +1833,7 @@ tidy_install() {  	# check existence of backup files  	local file  	for file in "${backup[@]}"; do -		if [[ ! -f $file ]]; then +		if [[ ! -f $file && ! -h $file ]]; then  			warning "$(gettext "%s entry file not in package : %s")" "backup" "$file"  		fi  	done @@ -2140,6 +2140,8 @@ write_pkginfo() {  	local size="$(@DUPATH@ @DUFLAGS@)"  	size="$(( ${size%%[^0-9]*} * 1024 ))" +	merge_arch_attrs +  	msg2 "$(gettext "Generating %s file...")" ".PKGINFO"  	printf "# Generated by makepkg %s\n" "$makepkg_version"  	printf "# using %s\n" "$(fakeroot -v)" | 
