[Vm-dev] [commit][2947] Fix the location of the mkNamedPrims. h script in the Unix makefile.

commits at squeakvm.org commits at squeakvm.org
Thu Jun 5 23:27:54 UTC 2014


Revision: 2947
Author:   eliot
Date:     2014-06-05 16:27:52 -0700 (Thu, 05 Jun 2014)
Log Message:
-----------
Fix the location of the mkNamedPrims.h script in the Unix makefile.  It assumed
it was in root/unixbuild, and that might not necessarily be checked-out.  Instead
assume it is in $(blddir)/.. which is where it exists currently.  Eventually it
may end up somewhere common between the builds.

Modified Paths:
--------------
    branches/Cog/platforms/unix/vm/Makefile.in

Modified: branches/Cog/platforms/unix/vm/Makefile.in
===================================================================
--- branches/Cog/platforms/unix/vm/Makefile.in	2014-06-05 22:24:37 UTC (rev 2946)
+++ branches/Cog/platforms/unix/vm/Makefile.in	2014-06-05 23:27:52 UTC (rev 2947)
@@ -63,7 +63,7 @@
 	$(RANLIB) $(TARGET)
 
 $(blddir)/sqNamedPrims.h:	$(vmmcfg)/plugins.int
-	$(topdir)/unixbuild/mkNamedPrims.sh $(vmmcfg)/plugins.int >$(blddir)/sqNamedPrims.h
+	$(blddir)/../mkNamedPrims.sh $(vmmcfg)/plugins.int >$(blddir)/sqNamedPrims.h
 
 # rebuild sqNamedPrims.o if sqNamedPrims.h changes
 



More information about the Vm-dev mailing list