summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2007-02-01 03:12:49 +0100
committerDan McGee <dan@archlinux.org>2007-02-01 03:12:49 +0100
commitfafeb32c9d9f067c44ed1f8bdbd8295af45a1c91 (patch)
treefd1d0435d1218cafcaaa4ef124e67f149d58fd0c /scripts/makepkg
parent4b977d1f2e12387578f22f7105135985de0afa61 (diff)
downloadpacman-fafeb32c9d9f067c44ed1f8bdbd8295af45a1c91.tar.gz
pacman-fafeb32c9d9f067c44ed1f8bdbd8295af45a1c91.tar.xz
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>
Diffstat (limited to 'scripts/makepkg')
-rwxr-xr-xscripts/makepkg5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/makepkg b/scripts/makepkg
index ec431f5e..2d4510fd 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -524,7 +524,10 @@ msg "Making package: $pkgname $pkgver-$pkgrel ($(date))"
unset deplist makedeplist
# fix flyspray bug #5973
if [ "$NODEPS" = "1" -o "$GENINTEG" = "1" -o "$NOBUILD" = "1" -o "$REPKG" = "1" ]; then
- warning "skipping dependency checks"
+ if [ "$NODEPS" = "1" ]; then
+ warning "skipping dependency checks"
+ fi
+ # skip printing a warning message for the others: geninteg, nobuild, repkg
elif [ $(type -p pacman) ]; then
msg "Checking Runtime Dependencies..."
deplist=$(checkdeps ${depends[@]})