Skip to content

Commit de378a9

Browse files
committed
Fixing make install
1 parent c9353d9 commit de378a9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Makefile.am

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,12 @@ clean-local:
9292
maintainer-clean-local:
9393
rm -rf autom4te.cache
9494

95+
install-exec-local:
96+
mkdir -p $(DESTDIR)$(libdir)/$(PACKAGE)
97+
$(INSTALL_SCRIPT) -t $(DESTDIR)$(libdir)/$(PACKAGE)/ $(LIBFILES)
9598

99+
uninstall-local:
100+
rm -rf $(DESTDIR)$(libdir)/$(PACKAGE)
96101

97102
MAINTAINERCLEANFILES = Makefile.in \
98103
install-sh \

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
AC_INIT([accord], [3.3])
2+
AC_INIT([accord], m4_esyscmd([tr -d '\n' < Version.txt]))
33
AM_INIT_AUTOMAKE([tar-ustar foreign])
44

55
AC_PROG_INSTALL
@@ -43,4 +43,4 @@ ${PACKAGE}-${VERSION}
4343
Mono Runtime: ${MONO}
4444
Installation Directory: ${prefix}/lib/${PACKAGE}/
4545

46-
EOF
46+
EOF

0 commit comments

Comments
 (0)