Skip to content

Commit 9bcf49a

Browse files
RH-steve-grubbRajiv Andrade
authored andcommitted
Fixed config.rpath lookup and cleaned up bootstrap.sh
Signed-off-by: Steve Grubb <sgrubb@redhat.com>
1 parent eef1437 commit 9bcf49a

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

‎bootstrap.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,7 @@ set -x
2828
# gettextize support
2929
mkdir -p po
3030
mkdir -p m4
31-
touch config.rpath
32-
touch mkinstalldirs
3331
cp -R po_/* po/
3432
touch po/Makefile.in.in
3533
touch m4/Makefile.am
36-
gettextize -c --force --no-changelog || exit
37-
38-
aclocal || exit
39-
libtoolize --force -c || exit
40-
automake -c --add-missing --foreign || exit
41-
autoconf
34+
autoreconf -fv --install

‎configure.in

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@
2222
#
2323

2424
AC_INIT(tpm-tools, 1.3.5, trousers-tech@lists.sf.net)
25+
AC_PREREQ(2.12)dnl
2526
AC_CONFIG_SRCDIR(Makefile.am)
2627
AM_CONFIG_HEADER(config.h)
27-
AC_CANONICAL_TARGET
2828

29+
AC_CONFIG_MACRO_DIR([m4])
30+
AC_CANONICAL_TARGET
2931
AM_INIT_AUTOMAKE([foreign 1.6])
3032

33+
3134
DEBUG=""
3235
AC_MSG_CHECKING([for debug-enabled build])
3336
AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [create a debug build that outputs debug messages]),
@@ -55,17 +58,15 @@ fi
5558

5659

5760
AC_PROG_CC
58-
AC_PROG_CXX
5961
AC_PROG_INSTALL
6062
AC_PROG_LIBTOOL
61-
AC_PROG_LN_S
6263

63-
AC_CHECK_PROGS(AR, ar)
6464
AC_CHECK_PROGS(COPY, cp)
6565
AC_CHECK_PROGS(ECHO, echo)
6666
AC_CHECK_PROGS(MKDIR, mkdir)
6767
AC_CHECK_PROGS(RM, rm)
6868

69+
AM_GNU_GETTEXT_VERSION([0.15])
6970
AM_GNU_GETTEXT([external])
7071

7172
# Arch specific stuff

0 commit comments

Comments
 (0)