diff options
author | Reuben Thomas <rrt@sc3d.org> | 2007-12-09 16:09:18 +0000 |
---|---|---|
committer | Reuben Thomas <rrt@sc3d.org> | 2007-12-09 16:09:18 +0000 |
commit | 600afc7ff1df3aedc69dd34d7a3d8c0a40b10a82 (patch) | |
tree | 578f8a3d4a842f89e184fc966ed6cc18d9564f92 | |
parent | 6850f74d8f4c1ac2353ddd460590f1af8edb5572 (diff) | |
download | plptools-600afc7ff1df3aedc69dd34d7a3d8c0a40b10a82.tar.gz plptools-600afc7ff1df3aedc69dd34d7a3d8c0a40b10a82.tar.bz2 plptools-600afc7ff1df3aedc69dd34d7a3d8c0a40b10a82.zip |
Remove autogen.sh and hence Makefile.am.in (becomes Makefile.am), and
add a note about use of autoreconf to INSTALL.
-rw-r--r-- | INSTALL | 6 | ||||
-rw-r--r-- | Makefile.am (renamed from Makefile.am.in) | 2 | ||||
-rw-r--r-- | autogen.sh | 9 |
3 files changed, 7 insertions, 10 deletions
@@ -57,5 +57,9 @@ Basic Installation ldconfig after installation. Another option is to run configure with the option --prefix=/usr + + To build from CVS, you will first need to run + + autoreconf -i + Have fun. - -Fritz diff --git a/Makefile.am.in b/Makefile.am index f14b899..1d84b9e 100644 --- a/Makefile.am.in +++ b/Makefile.am @@ -28,3 +28,5 @@ kdoc: specfile: sed -e "s/\@VERSION\@/$(VERSION)/" < $(TMPDEST)etc/plptools.spec.in \ > $(TMPDEST)etc/plptools.spec + +ACLOCAL_AMFLAGS = -I m4 diff --git a/autogen.sh b/autogen.sh deleted file mode 100644 index 44e95e7..0000000 --- a/autogen.sh +++ /dev/null @@ -1,9 +0,0 @@ -# Set up for compilation - -cp Makefile.am.in Makefile.am -mkdir -p intl -echo n | gettextize --force --intl --no-changelog -test -e po/Makevars || cp po/Makevars.template po/Makevars -rm -f *~ --test -f po/ChangeLog~ && mv -f po/ChangeLog~ po/ChangeLog -autoreconf -i |