replace post-linking commands with true, not #, for the platforms for which they don't make sense: this allows to use things like wx-config --rezflags directly in makefiles and not only with autoconf

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29914 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-10-16 11:45:06 +00:00
parent 170b04bae6
commit 68e24a7b28

View File

@@ -3429,14 +3429,14 @@ if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1; then
fi fi
else else
dnl default value is to (silently) do nothing in the makefile dnl default value is to (silently) do nothing in the makefile
MACSETFILE="@#" MACSETFILE="@true"
MACRESWXCONFIG="#" MACRESWXCONFIG="@true"
dnl confusingly, wxOS2 also uses MACRESCOMP in its post-link step dnl confusingly, wxOS2 also uses MACRESCOMP in its post-link step
if test "$wxUSE_PM" = 1; then if test "$wxUSE_PM" = 1; then
MACRESCOMP="emxbind -ep" MACRESCOMP="emxbind -ep"
else else
MACRESCOMP="@#" MACRESCOMP="@true"
fi fi
fi fi