Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spec file:: bootstrap should be called for configure generation #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AuthzXMLreader/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
## Checked in by $Author: apeters $
#######################################################################

INCLUDES = $(XML2_INCDIR) $(BASE_INCDIR)
AM_CPPFLAGS = $(XML2_INCDIR) $(BASE_INCDIR)
lib_LTLIBRARIES = libAuthzXMLreader.la
noinst_LTLIBRARIES =libConvAuthzXMLreader.la

Expand Down
2 changes: 2 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
## Checked in by $Author: apeters $
#######################################################################

ACLOCAL_AMFLAGS = -I m4

SUBDIRS = AuthzXMLreader SealedEnvelope .

CPPFLAGS = -I /usr/kerberos/include -I$(top_srcdir)/SealedEnvelope -I$(top_srcdir)/AuthzXMLreader \
Expand Down
9 changes: 4 additions & 5 deletions bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Build steps necessary for autotools
/usr/bin/libtoolize --force
/usr/bin/aclocal
/usr/bin/automake --force-missing --add-missing
/usr/bin/autoconf
./configure
libtoolize --force
aclocal
automake --force-missing --add-missing
autoconf
1 change: 1 addition & 0 deletions tokenauthz.spec
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ The software and RPM packaging was provided by [email protected] [C
%if 0%{?distribution} == 7
source /opt/rh/devtoolset-8/enable
%endif
./bootstrap.sh
./configure --prefix=/usr --libdir=/usr/lib64 --includedir=/usr/include
make
%install
Expand Down