I'm trying to build rpm and getting error :
rpmbuild :error: Could not generate output filename for package myApp: unknown tag
I tried to add a client name to a name of the rpm file . Before I inserted changes everything worked fine .
What I made in build.csh to get a client name :
CLIENT=
case:
-c)CLIENT=$2
shift 2
;;
rpmbuild -bb -vv \
--define "client ${CLIENT}" \
--define "_build_name_fmt %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}-%%{CLIENT}.%%{ARCH}.rpm" \
Thanks in advance