Fix erroneous uses of ${prefix} rather than $(CDE_INSTALLATION_TOP)

Some Makefiles use prefix when they should be using
CDE_INSTALLATION_TOP.

Patch by Peter G.
This commit is contained in:
Jon Trulson
2020-03-23 13:10:07 -06:00
parent a6e78364d0
commit 5852c4742f
10 changed files with 13 additions and 13 deletions

View File

@@ -9,7 +9,7 @@ dist_cfg_DATA = CDE.lcx
lib_LTLIBRARIES = libDtHelp.la
libDtHelp_la_CFLAGS = -I./il -I./jpeg -I../DtSvc/DtUtil2 -DDTLIB \
-DCDE_INSTALLATION_TOP='"${prefix}"' \
-DCDE_INSTALLATION_TOP='"$(CDE_INSTALLATION_TOP)"' \
-DCDE_CONFIGURATION_TOP='"$(CDE_CONFIGURATION_TOP)"' \
@DT_INCDIR@ @DTI_INCDIR@

View File

@@ -2,7 +2,7 @@ MAINTAINERCLEANFILES = Makefile.in
noinst_LTLIBRARIES = libil.la
libil_la_CFLAGS = -I.. -DDTLIB -DCDE_INSTALLATION_TOP='"${prefix}"' \
libil_la_CFLAGS = -I.. -DDTLIB -DCDE_INSTALLATION_TOP='"$(CDE_INSTALLATION_TOP)"' \
-DCDE_CONFIGURATION_TOP='"$(CDE_CONFIGURATION_TOP)"' \
@DT_INCDIR@ @DTI_INCDIR@