summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-09-05 15:45:51 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-09-05 15:45:51 +0000
commit48a19350841f0640bbe9411a6b0ab0337fae8ac3 (patch)
treeb7618afb12dab4b76f73610c0606fb00948892a3 /src/config
parente4c23bcab9702f62084eef09929485d261572982 (diff)
downloadkrb5-48a19350841f0640bbe9411a6b0ab0337fae8ac3.tar.gz
krb5-48a19350841f0640bbe9411a6b0ab0337fae8ac3.tar.xz
krb5-48a19350841f0640bbe9411a6b0ab0337fae8ac3.zip
fix more UseInstalled problems
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1089 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/config')
-rw-r--r--src/config/Imake.rules6
-rw-r--r--src/config/Imake.tmpl4
2 files changed, 7 insertions, 3 deletions
diff --git a/src/config/Imake.rules b/src/config/Imake.rules
index 662317e133..865d474fb4 100644
--- a/src/config/Imake.rules
+++ b/src/config/Imake.rules
@@ -525,7 +525,7 @@ install:: class.ad @@\
* this Imakefile is within the source tree.
*/
#ifndef DependDependency
-#ifdef UseInstalled
+#ifdef UseMakedependInstalled
#define DependDependency() /**/
#else
#define DependDependency() @@\
@@ -536,7 +536,7 @@ $(DEPEND): @@\
cd $(DEPENDSRC); $(MAKE); \ @@\
echo "okay, continuing in $(CURRENT_DIR)"
-#endif /* UseInstalled */
+#endif /* UseMakedependInstalled */
#endif /* DependDependency */
@@ -593,7 +593,7 @@ $(IMAKE): @@\
echo "bootstrapping $@ from Makefile.ini in $(IMAKESRC) first..."; \ @@\
$(MAKE) -f Makefile.ini BOOTSTRAPCFLAGS=$(BOOTSTRAPCFLAGS); fi; \ @@\
echo "okay, continuing in $(CURRENT_DIR)")
-#endif /* UseInstalled */
+#endif /* UseImakeInstalled */
#endif /* ImakeDependency */
diff --git a/src/config/Imake.tmpl b/src/config/Imake.tmpl
index 28293d423f..1eaec7cd7b 100644
--- a/src/config/Imake.tmpl
+++ b/src/config/Imake.tmpl
@@ -675,8 +675,12 @@ STDC_TOP_INCLUDES = STDCTopIncludes
IMAKE_CMD = $(IMAKE) -DUseInstalled -I$(IRULESRC) $(IMAKE_DEFINES)
#else
IRULESRC = $(CONFIGSRC)
+#ifdef UseImakeInstalled
+ IMAKE_CMD = $(IMAKE) -I$(NEWTOP)$(IRULESRC) $(IMAKE_DEFINES)
+#else
IMAKE_CMD = $(NEWTOP)$(IMAKE) -I$(NEWTOP)$(IRULESRC) $(IMAKE_DEFINES)
#endif
+#endif
ICONFIGFILES = $(IRULESRC)/Imake.tmpl $(IRULESRC)/Imake.rules \
$(IRULESRC)/Project.tmpl $(IRULESRC)/site.def \
$(IRULESRC)/$(MACROFILE) $(EXTRA_ICONFIGFILES)