From 879df073849d2396a0158d792c3081c3b81b4056 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 4 Jul 2001 17:25:04 +0000 Subject: [PATCH] fix to include correct files.lst for wxUniv git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10824 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- Makefile.in | 2 +- configure | 4 ++-- configure.in | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile.in b/Makefile.in index 4a35dd171f..5aac042353 100644 --- a/Makefile.in +++ b/Makefile.in @@ -157,7 +157,7 @@ WX_LINGUAS = `cd $(top_srcdir)/locale && ls *.mo 2> /dev/null | sed -n 's/\.mo// # this line will include a file which defines ALL_SOURCES, ALL_OBJECTS, # ALL_DEPFILES and ALL_HEADERS variables with the complete list of .cpp, .o, # .d and .h/.inl files for the current toolkit -include $(top_srcdir)/@PORT_FILES@ +include @PORT_FILES@ SOURCES = $(ALL_SOURCES) HEADERS = $(ALL_HEADERS) diff --git a/configure b/configure index 4264211b04..0a0e2e499b 100755 --- a/configure +++ b/configure @@ -10508,9 +10508,9 @@ rm -f conftest* ALL_DEPFILES="${ALL_DEPFILES} \$(HTMLDEPS)" fi - PORT_FILES="src/\$(TOOLKITDIR)/files.lst" + PORT_FILES="\${top_srcdir}/src/\$(TOOLKITDIR)/files.lst" if test "$wxUSE_UNIVERSAL" = "yes"; then - PORT_FILES="\${top_srcdir}/src/univ/files.lst ${PORT_FILES}" + PORT_FILES="${PORT_FILES} \${top_srcdir}/src/univ/files.lst" fi RPM_FILES="src/\$(TOOLKITDIR)/rpmfiles.lst" RPM_SPEC="wx\$(TOOLKIT).spec" diff --git a/configure.in b/configure.in index f76c5607b2..8a23a6d14d 100644 --- a/configure.in +++ b/configure.in @@ -2056,10 +2056,9 @@ equivalent variable and GTK+ is version 1.2.3 or above. fi dnl misc other files depending on the port - PORT_FILES="src/\$(TOOLKITDIR)/files.lst" + PORT_FILES="\${top_srcdir}/src/\$(TOOLKITDIR)/files.lst" if test "$wxUSE_UNIVERSAL" = "yes"; then - dnl put univ files first! - PORT_FILES="\${top_srcdir}/src/univ/files.lst ${PORT_FILES}" + PORT_FILES="${PORT_FILES} \${top_srcdir}/src/univ/files.lst" fi RPM_FILES="src/\$(TOOLKITDIR)/rpmfiles.lst" RPM_SPEC="wx\$(TOOLKIT).spec" -- 2.45.2