From eb1ded1dc60f9b9ef2585f6ae0ba9921392585c4 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Wed, 30 Oct 2019 20:52:34 -0600 Subject: [PATCH] dtfile: GENCPP, be consistent with SCRIPTFLAGS --- cde/programs/dtfile/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cde/programs/dtfile/Makefile.am b/cde/programs/dtfile/Makefile.am index c956232dc..30bd7a8b3 100644 --- a/cde/programs/dtfile/Makefile.am +++ b/cde/programs/dtfile/Makefile.am @@ -44,15 +44,15 @@ dtfile_SOURCES = ChangeDir.c ChangeDirP.c Command.c Common.c \ ToolTalk.c Trash.c Utils.c fsDialog.c # Mind the quoting here... -LOCAL_CPP_DEFINES = -DSHAPE -D_ILS_MACROS -DSUN_PERF \ - -DCDE_INSTALLATION_TOP="${prefix}" \ - -DCDE_CONFIGURATION_TOP="$(CDE_CONFIGURATION_TOP)" \ - -DKORNSHELL="$(KSH)" +SCRIPTFLAGS = -DSHAPE -D_ILS_MACROS -DSUN_PERF \ + -DCDE_INSTALLATION_TOP="${prefix}" \ + -DCDE_CONFIGURATION_TOP="$(CDE_CONFIGURATION_TOP)" \ + -DKORNSHELL="$(KSH)" dtfile.config: dtfile.config.cpp $(RM) $@ - $(GENCPP) -P -DXCOMM=# $(LOCAL_CPP_DEFINES) $< > $@ + $(GENCPP) -P -DXCOMM=# $(SCRIPTFLAGS) $< > $@ dtfile_error: dtfile_error.cpp $(RM) $@ - $(GENCPP) -P -DXCOMM=# $(LOCAL_CPP_DEFINES) $< > $@ + $(GENCPP) -P -DXCOMM=# $(SCRIPTFLAGS) $< > $@