summaryrefslogtreecommitdiff
path: root/bin/generate_export_file.pl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/generate_export_file.pl')
-rwxr-xr-xbin/generate_export_file.pl12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/generate_export_file.pl b/bin/generate_export_file.pl
index 7349f816e4c..a2d42cb2c39 100755
--- a/bin/generate_export_file.pl
+++ b/bin/generate_export_file.pl
@@ -15,13 +15,13 @@ use Getopt::Std;
$flags = join (" ", @ARGV);
-if (!getopts ('df:hsn') || $opt_h) {
+if (!getopts ('df:hs') || $opt_h) {
print STDERR
- "generate_export_file.pl [-d] [-f dependency] [-n] library_name\n",
+ "generate_export_file.pl [-d] [-f dependency] [-s] library_name\n",
"\n",
" -d Turn on debug mode\n",
" -f Adds a dependency to another *_HAS_DLL macro\n",
- " -n Do not add in ACE_AS_STATIC_LIBS check\n",
+ " -s Add in ACE_AS_STATIC_LIBS check\n",
"\n",
"generate_export_file creates the *_export files that are used\n",
"in exporting of symbols for DLLs (and not exporting them when\n",
@@ -39,8 +39,8 @@ if (defined $opt_d) {
print STDERR "Dependency to $opt_f\n";
}
- if (defined $opt_n) {
- print STDERR "ACE_AS_STATIC_LIBS turned off\n";
+ if (defined $opt_s) {
+ print STDERR "ACE_AS_STATIC_LIBS turned on\n";
}
}
@@ -72,7 +72,7 @@ $prologue = '
##############################################################################
# Static Stuff
-if (!defined $opt_n)
+if (defined $opt_s)
{
$static_stuff = "
#if defined (ACE_AS_STATIC_LIBS) && !defined (-UC-_HAS_DLL)