[pacman-dev] makepkg skip deps warning
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> # # old_revision [3498d7019151c435522f9e5e16086802c47817b7] # # patch "scripts/makepkg" # from [1a46635579e41cba0a1b90026f229ae572ebcbce] # to [37d27ab59d685c584be7b23a352d0fd9201518fb] # ============================================================ --- scripts/makepkg 1a46635579e41cba0a1b90026f229ae572ebcbce +++ scripts/makepkg 37d27ab59d685c584be7b23a352d0fd9201518fb @@ -524,7 +524,9 @@ if [ "$NODEPS" = "1" -o "$GENINTEG" = "1 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 [ "$GENINTEG" != "1" -a "$NOBUILD" != "1" -a "$REPKG" != "1" ]; then + warning "skipping dependency checks" + fi elif [ $(type -p pacman) ]; then msg "Checking Runtime Dependencies..." deplist=$(checkdeps ${depends[@]})
participants (1)
-
James Rosten