diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/makepkg.sh.in | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 96e53499..de92e933 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2906,6 +2906,11 @@ else  		exit 1  	fi +	if [[ ${BUILDFILE##*/} != "${BUILDFILE}" && ${BUILDFILE} != "${startdir}/${BUILDFILE##*/}" ]]; then +		error "$(gettext "%s must be in the build directory.")" "$BUILDFILE" +		exit 1 +	fi +  	if [[ ${BUILDFILE:0:1} != "/" ]]; then  		BUILDFILE="$startdir/$BUILDFILE"  	fi  | 
