install: was missing in Makefile of ebizzy, hence make install was throwing error. This patch will fix make install error.
Signed-off-by: poornima nayak <[email protected]> diff -uprN ltp-full-20090731_orig/utils/benchmark/ebizzy-0.3/Makefile ltp-full-20090731/utils/benchmark/ebizzy-0.3/Makefile --- ltp-full-20090731_orig/utils/benchmark/ebizzy-0.3/Makefile 2009-08-20 19:59:13.000000000 +0530 +++ ltp-full-20090731/utils/benchmark/ebizzy-0.3/Makefile 2009-08-20 20:23:19.000000000 +0530 @@ -4,5 +4,7 @@ configure: ./configure ebizzy: configure gcc -Wall -Wshadow -lpthread -o ebizzy ebizzy.c +install: + clean: rm -f ebizzy *~ ------------------------------------------------------------------------------ Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application coding. Discover what's new with Crystal Reports now. http://p.sf.net/sfu/bobj-july _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
