From a7804f65775761ba6e391c733b87332cc0f361e0 Mon Sep 17 00:00:00 2001 From: cxgeorge <> Date: Wed, 6 Jun 2001 21:17:49 +0000 Subject: [PATCH] fix bug in prev chkin --- dtool/pptempl/Global.pp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dtool/pptempl/Global.pp b/dtool/pptempl/Global.pp index 936a6b40e6..f46a6c4204 100644 --- a/dtool/pptempl/Global.pp +++ b/dtool/pptempl/Global.pp @@ -290,10 +290,11 @@ // This variable returns the complete set of sources for the current // target. + #defer get_sources \ $[SOURCES] \ - $[PRECOMPILED_HEADER] \ - $[if $[ne $[NO_COMBINED_SOURCES],] $[INCLUDED_SOURCES], $[COMBINED_SOURCES]] \ + $[PRECOMPILED_HEADER] \ + $[if $[ne $[NO_COMBINED_SOURCES],], $[INCLUDED_SOURCES], $[COMBINED_SOURCES]] \ $[if $[HAVE_CRYPTO],$[IF_CRYPTO_SOURCES]] \ $[if $[HAVE_JPEG],$[IF_JPEG_SOURCES]] \ $[if $[HAVE_TIFF],$[IF_TIFF_SOURCES]] \ @@ -307,7 +308,7 @@ #defer all_sources \ $[SOURCES] \ $[PRECOMPILED_HEADER] \ - $[if $[ne $[NO_COMBINED_SOURCES],] $[INCLUDED_SOURCES], $[COMBINED_SOURCES]] \ + $[if $[ne $[NO_COMBINED_SOURCES],], $[INCLUDED_SOURCES], $[COMBINED_SOURCES]] \ $[IF_CRYPTO_SOURCES] \ $[IF_JPEG_SOURCES] \ $[IF_TIFF_SOURCES] \