diff options
author | Robin Watts <Robin.Watts@artifex.com> | 2020-04-16 05:05:21 -0700 |
---|---|---|
committer | Robin Watts <Robin.Watts@artifex.com> | 2020-04-16 05:05:54 -0700 |
commit | 85b1119bb3493608b1e84acfaa7b27a6e5259b43 (patch) | |
tree | 5fc2926ce2877449b941798a06e7e0c82ccc7e7d /configure.ac | |
parent | d845756b28a9cdadaf5374cc4fa130963ea65adc (diff) | |
download | ghostpdl-85b1119bb3493608b1e84acfaa7b27a6e5259b43.tar.gz |
Fix URF filter configuration code.
I was missing some quoting.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index d32c7875f..39ff9f754 100644 --- a/configure.ac +++ b/configure.ac @@ -2024,10 +2024,10 @@ if test x$with_urf != xno; then AC_MSG_RESULT([yes]) ENABLEURF="\$(D_)URF_INCLUDED\$(_D)" URF_DEVS='urfgray urfrgb urfcmyk' - GPDL_URF_TOP_OBJ=$(GPDLOBJ)/$(GPDL_URF_TOP_OBJ_FILE) - URF_INCLUDE=$(I_)$(URFSRCDIR)$(_I) - URF_DEV=$(GLD)urfd.dev - SURFX_H=SURFX_H=$(URFSRCDIR)$(D)surfx.h + GPDL_URF_TOP_OBJ="\$(GPDLOBJ)/\$(GPDL_URF_TOP_OBJ_FILE)" + URF_INCLUDE="\$(I_)\$(URFSRCDIR)\$(_I)" + URF_DEV="\$(GLD)urfd.dev" + SURFX_H="\$(URFSRCDIR)\$(D)surfx.h" fi fi |