summaryrefslogtreecommitdiff
path: root/pidl
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2013-02-08 09:12:20 +1100
committerMichael Adam <obnox@samba.org>2013-02-28 02:14:25 +0100
commit1da22ab994822acacf9a0378c68b15cd32535390 (patch)
treeca39fc405c9074a95cd2ba390dbe7453a6d71169 /pidl
parent3630ea12034ac17c1498ee2f81eb4788c0305782 (diff)
downloadsamba-1da22ab994822acacf9a0378c68b15cd32535390.tar.gz
samba-1da22ab994822acacf9a0378c68b15cd32535390.tar.bz2
samba-1da22ab994822acacf9a0378c68b15cd32535390.zip
build: Do not force a specific perl from ${PERL} when running pod2man
pod2man should have the right #!/usr/bin/perl line already, and forcing it may cause us to use the wrong perl. Essentially treat this like any other system binary, rather than forcing it to use the first perl we found. This essentially reverts e80f576db66ad04592ac436ed74ceb9b96452060. Current SLES11 does not seem to have the issue this was added to address. Andrew Bartlett Reviewed-by: Michael Adam <obnox@samba.org> Autobuild-User(master): Michael Adam <obnox@samba.org> Autobuild-Date(master): Thu Feb 28 02:14:25 CET 2013 on sn-devel-104
Diffstat (limited to 'pidl')
-rw-r--r--pidl/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/pidl/wscript b/pidl/wscript
index e60ca202f5..7a25734663 100644
--- a/pidl/wscript
+++ b/pidl/wscript
@@ -49,7 +49,7 @@ def build(bld):
bld.SET_BUILD_GROUP('final')
if 'POD2MAN' in bld.env and bld.env['POD2MAN'] != '':
for src, manpage in pidl_manpages.iteritems():
- bld(rule='${PERL} ${POD2MAN} -c "Samba Documentation" ${SRC} ${TGT}',
+ bld(rule='${POD2MAN} -c "Samba Documentation" ${SRC} ${TGT}',
shell=True,
source=src,
install_path=os.path.dirname(bld.EXPAND_VARIABLES('${MANDIR}/'+manpage)),