[Linux-decnet-commit] CVS: dnprogs/apps Makefile,1.7,1.8
Brought to you by:
chrissie_c,
ph3-der-loewe
From: Patrick C. <pa...@us...> - 2004-08-12 09:18:12
|
Update of /cvsroot/linux-decnet/dnprogs/apps In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31744/apps Modified Files: Makefile Log Message: Makefile fixes from my "makefile mentor" : Maciej W. Rozycki Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/apps/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** Makefile 15 Oct 2003 15:46:53 -0000 1.7 --- Makefile 12 Aug 2004 09:17:32 -0000 1.8 *************** *** 65,71 **** install -d $(prefix)/sbin install -d $(prefix)/bin ! install -d $(prefix)/man/man1 ! install -d $(prefix)/man/man5 ! install -d $(prefix)/man/man8 install -d $(sysconfprefix)/etc install -m 0750 -s $(PROG1) $(prefix)/sbin --- 65,71 ---- install -d $(prefix)/sbin install -d $(prefix)/bin ! install -d $(manprefix)/man/man1 ! install -d $(manprefix)/man/man5 ! install -d $(manprefix)/man/man8 install -d $(sysconfprefix)/etc install -m 0750 -s $(PROG1) $(prefix)/sbin *************** *** 76,82 **** if [ -f $(PROG6) ]; then install -m 0750 -s $(PROG6) $(prefix)/sbin; fi install -m 0755 -s $(PROG7) $(prefix)/sbin ! install -m 0644 $(MANPAGES1) $(prefix)/man/man1 ! install -m 0644 $(MANPAGES5) $(prefix)/man/man5 ! install -m 0644 $(MANPAGES8) $(prefix)/man/man8 if [ ! -f $(sysconfprefix)/etc/decnet.conf ]; then \ install -m 0644 decnet.conf $(sysconfprefix)/etc/decnet.conf.sample; \ --- 76,82 ---- if [ -f $(PROG6) ]; then install -m 0750 -s $(PROG6) $(prefix)/sbin; fi install -m 0755 -s $(PROG7) $(prefix)/sbin ! install -m 0644 $(MANPAGES1) $(manprefix)/man/man1 ! install -m 0644 $(MANPAGES5) $(manprefix)/man/man5 ! install -m 0644 $(MANPAGES8) $(manprefix)/man/man8 if [ ! -f $(sysconfprefix)/etc/decnet.conf ]; then \ install -m 0644 decnet.conf $(sysconfprefix)/etc/decnet.conf.sample; \ |