aboutsummaryrefslogtreecommitdiffstats
path: root/make-reg-dotc
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-11 05:41:38 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-07-11 05:41:38 +0000
commitcf362377463fb1e1ad7068f20a4e697af74fa582 (patch)
treef37ce47396311f96be46051411ce9c3c0f5908fe /make-reg-dotc
parent82937218183bcfc9e5957a62233b4a08e585a6ff (diff)
"make-reg-dotc" was writing the "#include "register.h"" line to
"register.c-tmp", not "${outfile}-tmp"; fix that. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3688 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'make-reg-dotc')
-rwxr-xr-xmake-reg-dotc2
1 files changed, 1 insertions, 1 deletions
diff --git a/make-reg-dotc b/make-reg-dotc
index bfa35984fe..8aee132667 100755
--- a/make-reg-dotc
+++ b/make-reg-dotc
@@ -19,7 +19,7 @@ shift
rm -f ${outfile}-tmp
echo '/* Do not modify this file. */' >${outfile}-tmp
echo '/* It is created automatically by the Makefile. */'>>${outfile}-tmp
-echo '#include "register.h"' >>register.c-tmp
+echo '#include "register.h"' >>${outfile}-tmp
#
# Build code to call all the protocol registration routines.