author | Michael Krelin <hacker@klever.net> | 2006-11-12 11:59:41 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-11-12 11:59:41 (UTC) |
commit | ffd3d21bea4a1684ad33dc91564180648a74b447 (patch) (unidiff) | |
tree | 207bfb77e72b339768f06e162ad85c32bce0e289 | |
parent | ef482613de4ee8e8fd65b053d54528cc342f7362 (diff) | |
download | fireflix-ffd3d21bea4a1684ad33dc91564180648a74b447.zip fireflix-ffd3d21bea4a1684ad33dc91564180648a74b447.tar.gz fireflix-ffd3d21bea4a1684ad33dc91564180648a74b447.tar.bz2 |
fixed building in the directory other than source directory
git-svn-id: http://svn.klever.net/kin/fireflix/trunk@210 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 386d6f1..9f3ebe1 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,28 +1,28 @@ | |||
1 | AC_INIT([fireflix], [0.0.3], [fireflix-bugs@klever.net]) | 1 | AC_INIT([fireflix], [0.0.3], [fireflix-bugs@klever.net]) |
2 | AC_CONFIG_SRCDIR([install.rdf.in]) | 2 | AC_CONFIG_SRCDIR([install.rdf.in]) |
3 | AM_INIT_AUTOMAKE([dist-bzip2]) | 3 | AM_INIT_AUTOMAKE([dist-bzip2]) |
4 | AC_SUBST([MOZ_EXT_ID],[{4269f719-86de-4668-b8ad-04752c23a69e}]) | 4 | AC_SUBST([MOZ_EXT_ID],[{4269f719-86de-4668-b8ad-04752c23a69e}]) |
5 | 5 | ||
6 | AC_PATH_PROG([ZIP],[zip],[false]) | 6 | AC_PATH_PROG([ZIP],[zip],[false]) |
7 | if test "${ZIP}" = "false" ; then | 7 | if test "${ZIP}" = "false" ; then |
8 | AC_MSG_ERROR([zip is required to produce packaged extension]) | 8 | AC_MSG_ERROR([zip is required to produce packaged extension]) |
9 | fi | 9 | fi |
10 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) | 10 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) |
11 | 11 | ||
12 | AC_SUBST([xpidir],[\${top_builddir}/xpi]) | 12 | AC_SUBST([xpidir],[\${top_builddir}/xpi]) |
13 | AC_SUBST([xpichromedir],[\${xpidir}/chrome]) | 13 | AC_SUBST([xpichromedir],[\${xpidir}/chrome]) |
14 | AC_SUBST([xpichromecontentdir],[\${xpichromedir}/content]) | 14 | AC_SUBST([xpichromecontentdir],[\${xpichromedir}/content]) |
15 | AC_SUBST([xpichromelocaledir],[\${xpichromedir}/locale]) | 15 | AC_SUBST([xpichromelocaledir],[\${xpichromedir}/locale]) |
16 | 16 | ||
17 | COPYING="`sed -e 's/\\"/\\"/g' -e 's,$,<br/>,g' -e 's/(c)/\\©/g' COPYING|tr '\n' ' '`" | 17 | COPYING="`sed -e 's/\\"/\\"/g' -e 's,$,<br/>,g' -e 's/(c)/\\©/g' ${srcdir}/COPYING|tr '\n' ' '`" |
18 | AC_SUBST([COPYING]) | 18 | AC_SUBST([COPYING]) |
19 | 19 | ||
20 | AC_CONFIG_FILES([ | 20 | AC_CONFIG_FILES([ |
21 | Makefile | 21 | Makefile |
22 | install.rdf | 22 | install.rdf |
23 | update.rdf | 23 | update.rdf |
24 | content/Makefile | 24 | content/Makefile |
25 | content/autoconf.dtd | 25 | content/autoconf.dtd |
26 | locale/Makefile | 26 | locale/Makefile |
27 | ]) | 27 | ]) |
28 | AC_OUTPUT | 28 | AC_OUTPUT |