aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.in2
-rw-r--r--lwlib/Makefile.in3
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index d2948f84139..63e17c32937 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -290,7 +290,7 @@ SUBDIR = $(NTDIR) lib lib-src src lisp
290 290
291# The subdir makefiles created by config.status. 291# The subdir makefiles created by config.status.
292SUBDIR_MAKEFILES_IN = @SUBDIR_MAKEFILES_IN@ 292SUBDIR_MAKEFILES_IN = @SUBDIR_MAKEFILES_IN@
293SUBDIR_MAKEFILES = `echo $(SUBDIR_MAKEFILES_IN:.in=) | sed 's|$(srcdir)/||g'` 293SUBDIR_MAKEFILES = $(patsubst ${srcdir}/%,%,${SUBDIR_MAKEFILES_IN:.in=})
294 294
295# Subdirectories to install, and where they'll go. lib-src's and nt's 295# Subdirectories to install, and where they'll go. lib-src's and nt's
296# makefiles know how to install them, so we don't do that here. 296# makefiles know how to install them, so we don't do that here.
diff --git a/lwlib/Makefile.in b/lwlib/Makefile.in
index cbc747cbbac..bfeef16571a 100644
--- a/lwlib/Makefile.in
+++ b/lwlib/Makefile.in
@@ -31,7 +31,8 @@ C_SWITCH_X_SITE=@C_SWITCH_X_SITE@
31C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@ 31C_SWITCH_SYSTEM=@C_SWITCH_SYSTEM@
32C_SWITCH_MACHINE=@C_SWITCH_MACHINE@ 32C_SWITCH_MACHINE=@C_SWITCH_MACHINE@
33PROFILING_CFLAGS = @PROFILING_CFLAGS@ 33PROFILING_CFLAGS = @PROFILING_CFLAGS@
34WARN_CFLAGS = `echo @WARN_CFLAGS@ | sed 's/ -Wwrite-strings//'` 34WARN_CFLAGS = @WARN_CFLAGS@
35WARN_CFLAGS := $(filter-out -Wwrite-strings,${WARN_CFLAGS})
35WERROR_CFLAGS = @WERROR_CFLAGS@ 36WERROR_CFLAGS = @WERROR_CFLAGS@
36CAIRO_CFLAGS= @CAIRO_CFLAGS@ 37CAIRO_CFLAGS= @CAIRO_CFLAGS@
37 38