[Distr-commits] r800 - pkg/setRNG
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Mar 7 16:04:12 CET 2012
Author: pgilbert
Date: 2012-03-07 16:04:11 +0100 (Wed, 07 Mar 2012)
New Revision: 800
Modified:
pkg/setRNG/Makefile
Log:
replaced include ../ in Makefiles with $QC since ../ does not always follow links properly to find Makerules and Makevars.
Modified: pkg/setRNG/Makefile
===================================================================
--- pkg/setRNG/Makefile 2012-03-04 11:04:15 UTC (rev 799)
+++ pkg/setRNG/Makefile 2012-03-07 15:04:11 UTC (rev 800)
@@ -1,7 +1,10 @@
PREREQ_PACS=
-include ../Makevars
+# ../Makevars goes up real path not sym link, so
+QC=${shell cd ../ ; pwd}
-default: $(DEFAULT)
+include $(QC)/Makevars
-include ../Makerules
+default: $(DEFAULT)
+
+include $(QC)/Makerules
More information about the Distr-commits
mailing list