[pacman-dev] CVS update of pacman-lib/scripts (makepkg)
Date: Wednesday, January 31, 2007 @ 21:12:49 Author: dan Path: /home/cvs-pacman/pacman-lib/scripts Modified: makepkg (1.38 -> 1.39) 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> ---------+ makepkg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: pacman-lib/scripts/makepkg diff -u pacman-lib/scripts/makepkg:1.38 pacman-lib/scripts/makepkg:1.39 --- pacman-lib/scripts/makepkg:1.38 Wed Jan 31 21:02:45 2007 +++ pacman-lib/scripts/makepkg Wed Jan 31 21:12:49 2007 @@ -524,7 +524,10 @@ 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[@]})
participants (1)
-
dan@archlinux.org