svn commit: r368097 - head/usr.bin/gh-bc

Stefan Eßer se at FreeBSD.org
Fri Nov 27 09:00:22 UTC 2020


Author: se
Date: Fri Nov 27 09:00:21 2020
New Revision: 368097
URL: https://svnweb.freebsd.org/changeset/base/368097

Log:
  Make generated C files depend on this Makefile
  
  The contents of lib.c, lib2.c, bc_help.c, and dc_help.c depends on the
  parameters passed to strgen.sh in this Makefile. A change to the number
  of parameters of strgen.sh has been applied to the invocation of this
  command, but this did not cause a rebuild of the generated files.
  
  Reported by:	Cy.Schubert at cschubert.com

Modified:
  head/usr.bin/gh-bc/Makefile

Modified: head/usr.bin/gh-bc/Makefile
==============================================================================
--- head/usr.bin/gh-bc/Makefile	Fri Nov 27 08:53:59 2020	(r368096)
+++ head/usr.bin/gh-bc/Makefile	Fri Nov 27 09:00:21 2020	(r368097)
@@ -95,16 +95,16 @@ NLSLINKS_pt_PT.ISO8859-1+= pt_BR.ISO8859-1
 NLSLINKS_pt_PT.ISO8859-1+= pt_PT.ISO8859-15
 .endif
 
-lib.c:		lib.bc
+lib.c:		lib.bc Makefile
 		cd ${BCDIR} && sh gen/strgen.sh gen/lib.bc ${.OBJDIR}/lib.c bc_lib bc_lib_name 1 1
 
-lib2.c:		lib2.bc
+lib2.c:		lib2.bc Makefile
 		cd ${BCDIR} && sh gen/strgen.sh gen/lib2.bc ${.OBJDIR}/lib2.c bc_lib2 bc_lib2_name 1 1
 
-bc_help.c:	bc_help.txt
+bc_help.c:	bc_help.txt Makefile
 		cd ${BCDIR} && sh gen/strgen.sh gen/bc_help.txt ${.OBJDIR}/bc_help.c bc_help
 
-dc_help.c:	dc_help.txt
+dc_help.c:	dc_help.txt Makefile
 		cd ${BCDIR} && sh gen/strgen.sh gen/dc_help.txt ${.OBJDIR}/dc_help.c dc_help
 
 bc.1:


More information about the svn-src-all mailing list