From: msweet Date: Thu, 11 Jul 2013 20:31:43 +0000 (+0000) Subject: Also package ippfind. X-Git-Tag: release-1.7rc1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad0357ca1db5160869026eb3977f955136a898a0;p=thirdparty%2Fcups.git Also package ippfind. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11128 a1ca3aef-8c08-0410-bb20-df032aa958be --- diff --git a/packaging/cups.spec.in b/packaging/cups.spec.in index 2dc0c69d4c..70535f116c 100644 --- a/packaging/cups.spec.in +++ b/packaging/cups.spec.in @@ -174,6 +174,7 @@ rm -rf $RPM_BUILD_ROOT /usr/bin/cancel /usr/bin/cupstestdsc /usr/bin/cupstestppd +/usr/bin/ippfind /usr/bin/ipptool /usr/bin/lp* %dir /usr/lib/cups @@ -272,6 +273,7 @@ rm -rf $RPM_BUILD_ROOT /usr/share/man/man1/cancel.1.gz /usr/share/man/man1/cupstestdsc.1.gz /usr/share/man/man1/cupstestppd.1.gz +/usr/share/man/man1/ippfind.1.gz /usr/share/man/man1/ipptool.1.gz /usr/share/man/man1/lp.1.gz /usr/share/man/man1/lpoptions.1.gz diff --git a/test/Makefile b/test/Makefile index c7507d9cb5..46ecd295cf 100644 --- a/test/Makefile +++ b/test/Makefile @@ -131,8 +131,13 @@ install-exec: echo Installing ipptool in $(BINDIR)... $(INSTALL_DIR) -m 755 $(BINDIR) $(INSTALL_BIN) ipptool $(BINDIR) + if test -x ippfind; then + $(INSTALL_BIN) ippfind $(BINDIR); \ + fi if test "x$(SYMROOT)" != "x"; then \ $(INSTALL_DIR) $(SYMROOT); \ + cp ippfind $(SYMROOT); \ + dsymutil $(SYMROOT)/ippfind; \ cp ipptool $(SYMROOT); \ dsymutil $(SYMROOT)/ipptool; \ fi