Skip to content

Commit

Permalink
Disable test, fix lowercase library
Browse files Browse the repository at this point in the history
- Disable `make test`, doesn't really work everywhere
- Lowercase the library name
  • Loading branch information
jelu committed Apr 12, 2024
1 parent 7fefa22 commit e1b92da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lib_LTLIBRARIES = libcryptopANT.la
libcryptopANT_la_SOURCES = src/cryptopANT.c src/cryptopANT.h
libcryptopANT_la_LDFLAGS = -version-info @CRYPTOPANT_LIBRARY_VERSION@ -lcrypto
lib_LTLIBRARIES = libcryptopant.la
libcryptopant_la_SOURCES = src/cryptopANT.c src/cryptopANT.h
libcryptopant_la_LDFLAGS = -version-info @CRYPTOPANT_LIBRARY_VERSION@ -lcrypto
ACLOCAL_AMFLAGS = -I m4
include_HEADERS = src/cryptopANT.h
dist_man3_MANS = man/cryptopANT.3
Expand Down
3 changes: 3 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@
override_dh_auto_configure:
./autogen.sh
dh_auto_configure

override_dh_auto_test:
true
4 changes: 0 additions & 4 deletions rpm/cryptopant.spec
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ sh autogen.sh
make %{?_smp_mflags}


%check
make test


%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
Expand Down

0 comments on commit e1b92da

Please sign in to comment.