From f5e5aad86bf785ddaadff28bbc29a96b5b6b6afa Mon Sep 17 00:00:00 2001 From: ahodgkinson Date: Thu, 22 Jun 2006 18:47:56 +0000 Subject: [PATCH] Needed to pass --nodeps to rpmbuild when executing the rpms target. git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@601 0109f412-320b-0410-ab79-c3e0c5ffbbe6 --- xflaim/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xflaim/Makefile b/xflaim/Makefile index 4b35efe..a896765 100644 --- a/xflaim/Makefile +++ b/xflaim/Makefile @@ -2134,9 +2134,9 @@ srcrpm: srcdist spec # -- RPMS -- .PHONY : rpms -rpms: dist spec +rpms: spec srcdist $(ec)$(gprintf) "Creating source and binary RPMs ...\n" - $(ec)rpmbuild --define="_topdir $(package_dir)" --quiet -ba $(spec_file) + $(ec)rpmbuild --define="_topdir $(package_dir)" --quiet --nodeps -ba $(spec_file) $(ec)find $(package_dir) -name *.rpm | xargs chmod 775 $(ec)$(gprintf) "Source and binary RPMs created.\n"