deprecate -fskeletons-copy; this option is now a default; use -flink-skeletons for old behavior
diff --git a/libasn1compiler/asn1c_save.c b/libasn1compiler/asn1c_save.c
index 2a01b41..d71db19 100644
--- a/libasn1compiler/asn1c_save.c
+++ b/libasn1compiler/asn1c_save.c
@@ -434,7 +434,7 @@
 #ifdef	_WIN32
 	int use_real_copy = 1;
 #else
-	int use_real_copy = (arg->flags & A1C_SKELETONS_COPY);
+	int use_real_copy = !(arg->flags & A1C_LINK_SKELETONS);
 #endif
 
 	fname = a1c_basename(path);
diff --git a/libasn1compiler/asn1compiler.h b/libasn1compiler/asn1compiler.h
index c8c9b9b..93755da 100644
--- a/libasn1compiler/asn1compiler.h
+++ b/libasn1compiler/asn1compiler.h
@@ -52,10 +52,10 @@
 	 */
 	A1C_INDIRECT_CHOICE	= 0x0400,
 	/*
-	 * -fskeletons-copy
-	 * Copy support files rather than symlink them.
+	 * -flink-skeletons
+	 * Symlink support files rather than copy them.
 	 */
-	A1C_SKELETONS_COPY	= 0x0800,
+	A1C_LINK_SKELETONS	= 0x0800,
 	/*
 	 * -gen-PER
 	 * Generate PER support code