Updated regular expression to match Subversion's keyword pattern.
Added missing depency on config.h. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@69 0da03de8-d603-11dd-86c2-0f8696b7b6f9
This commit is contained in:
parent
9414759983
commit
b52b4d9af0
5 changed files with 7 additions and 3 deletions
|
@ -188,6 +188,8 @@ clean-local:
|
|||
-e 's/[^ ]*\([^=]*\)=[^ ]*/-N\1_size/'` \
|
||||
"$<" "$@"
|
||||
|
||||
shellinabox/shell_in_a_box.o: shellinabox/shell_in_a_box.js config.h
|
||||
|
||||
.js.o:
|
||||
@$(ECHO) preprocess "$<" \| objcopy "$@"
|
||||
@trap 'rm -f "$@.pre"' EXIT INT TERM QUIT; \
|
||||
|
|
|
@ -1101,6 +1101,8 @@ clean-local:
|
|||
-e 's/[^ ]*\([^=]*\)=[^ ]*/-N\1_size/'` \
|
||||
"$<" "$@"
|
||||
|
||||
shellinabox/shell_in_a_box.o: shellinabox/shell_in_a_box.js config.h
|
||||
|
||||
.js.o:
|
||||
@$(ECHO) preprocess "$<" \| objcopy "$@"
|
||||
@trap 'rm -f "$@.pre"' EXIT INT TERM QUIT; \
|
||||
|
|
2
config.h
2
config.h
|
@ -95,7 +95,7 @@
|
|||
#define STDC_HEADERS 1
|
||||
|
||||
/* Most recent revision number in the version control system */
|
||||
#define VCS_REVISION "66"
|
||||
#define VCS_REVISION "68"
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "2.4"
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -1950,7 +1950,7 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
|
|||
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||
|
||||
|
||||
VCS_REVISION=`echo '$Revision: 66$'|sed 's/.Revision: \(.*\)./\1/'`
|
||||
VCS_REVISION=`echo '$Rev$'|sed 's/.Rev: \(.*\) ./\1/'`
|
||||
|
||||
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
|
|
|
@ -2,7 +2,7 @@ AC_PREREQ(2.57)
|
|||
|
||||
dnl This is the one location where the authoritative version number is stored
|
||||
AC_INIT(shellinabox, 2.4, markus@shellinabox.com)
|
||||
VCS_REVISION=`echo '$Rev$'|sed 's/.Revision: \(.*\)./\1/'`
|
||||
VCS_REVISION=`echo '$Rev$'|sed 's/.Rev: \(.*\) ./\1/'`
|
||||
AC_SUBST(VCS_REVISION)
|
||||
AC_DEFINE_UNQUOTED(VCS_REVISION, "${VCS_REVISION}",
|
||||
[Most recent revision number in the version control system])
|
||||
|
|
Loading…
Reference in a new issue