summaryrefslogtreecommitdiff
path: root/rt/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'rt/Makefile')
-rw-r--r--rt/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/rt/Makefile b/rt/Makefile
index 148c8542f..b6e00c6fd 100644
--- a/rt/Makefile
+++ b/rt/Makefile
@@ -51,7 +51,7 @@
#
-PERL = /Users/falcone/perl5/perlbrew/bin/perl
+PERL = /usr/bin/perl
INSTALL = /usr/bin/install -c
RT_LAYOUT = relative
@@ -63,7 +63,7 @@ SITE_CONFIG_FILE = $(CONFIG_FILE_PATH)/RT_SiteConfig.pm
RT_VERSION_MAJOR = 3
RT_VERSION_MINOR = 8
-RT_VERSION_PATCH = 9
+RT_VERSION_PATCH = 10
RT_VERSION = $(RT_VERSION_MAJOR).$(RT_VERSION_MINOR).$(RT_VERSION_PATCH)
TAG = rt-$(RT_VERSION_MAJOR)-$(RT_VERSION_MINOR)-$(RT_VERSION_PATCH)
@@ -526,7 +526,7 @@ apachectl:
SNAPSHOT=$(shell git describe --tags)
snapshot:
git archive --prefix "$(SNAPSHOT)/" HEAD | tar -xf -
- ( cd $(SNAPSHOT) && autoconf && ./configure )
+ ( cd $(SNAPSHOT) && autoconf && PERL=/usr/bin/perl ./configure )
tar -czf "$(SNAPSHOT).tar.gz" "$(SNAPSHOT)/"
rm -fr "$(SNAPSHOT)/"