# HG changeset patch # User Richard M. Stallman # Date 871756169 0 # Node ID 252bf4f45d18b8d0de74eb124cb7504a646557c0 # Parent 27eb2e784a5b15bee4a862cb60aca6aa91119f24 (paths-force): Store PATH_X_DEFAULTS in paths.h. diff -r 27eb2e784a5b -r 252bf4f45d18 Makefile.in --- a/Makefile.in Sat Aug 16 17:53:30 1997 +0000 +++ b/Makefile.in Sat Aug 16 18:29:29 1997 +0000 @@ -113,6 +113,9 @@ # Tell make where to find source files; this is needed for the makefiles. VPATH=@srcdir@ +# Where to find the application default. +x_default_search_path=@x_default_search_path@ + # ==================== Emacs-specific directories ==================== # These variables hold the values Emacs will actually use. They are @@ -204,6 +207,7 @@ paths-force: FRC @(lisppath=`echo ${lisppath} | ${removenullpaths}` ; \ buildlisppath=`echo ${buildlisppath} | ${removenullpaths}` ; \ + x_default_search_path=`echo ${x_default_search_path}`; \ sed < ${srcdir}/src/paths.in > paths.h.$$$$ \ -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'$${lisppath}'";' \ -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${buildlisppath}'";' \ @@ -211,6 +215,7 @@ -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \ -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \ -e 's;\(#.*PATH_BITMAPS\).*$$;\1 "${bitmapdir}";' \ + -e 's;\(#.*PATH_X_DEFAULTS\).*$$;\1 "${x_default_search_path}";' \ -e 's;\(#.*PATH_DOC\).*$$;\1 "${docdir}";') && \ ${srcdir}/move-if-change paths.h.$$$$ src/paths.h