This removes the warning about skipping dependency checking when the user is
either generating the md5sums, repackaging, or just downloading and extracting. The patch is below. ~ Jamie / yankees26 Signed-off-by: James Rosten <seinfeld90@gmail.com>
This commit is contained in:
parent
4b977d1f2e
commit
fafeb32c9d
1 changed files with 4 additions and 1 deletions
|
@ -524,7 +524,10 @@ msg "Making package: $pkgname $pkgver-$pkgrel ($(date))"
|
||||||
unset deplist makedeplist
|
unset deplist makedeplist
|
||||||
# fix flyspray bug #5973
|
# fix flyspray bug #5973
|
||||||
if [ "$NODEPS" = "1" -o "$GENINTEG" = "1" -o "$NOBUILD" = "1" -o "$REPKG" = "1" ]; then
|
if [ "$NODEPS" = "1" -o "$GENINTEG" = "1" -o "$NOBUILD" = "1" -o "$REPKG" = "1" ]; then
|
||||||
|
if [ "$NODEPS" = "1" ]; then
|
||||||
warning "skipping dependency checks"
|
warning "skipping dependency checks"
|
||||||
|
fi
|
||||||
|
# skip printing a warning message for the others: geninteg, nobuild, repkg
|
||||||
elif [ $(type -p pacman) ]; then
|
elif [ $(type -p pacman) ]; then
|
||||||
msg "Checking Runtime Dependencies..."
|
msg "Checking Runtime Dependencies..."
|
||||||
deplist=$(checkdeps ${depends[@]})
|
deplist=$(checkdeps ${depends[@]})
|
||||||
|
|
Loading…
Add table
Reference in a new issue