summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-01-26 09:23:23 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-02-09 00:27:08 +0100
commitb93326b9689d0ad935eed35f7cf5201ad04ac1ff (patch)
tree950a714716e78c356214b826c4be098d519a299d /packaging
parentfa1c71382d4f89d9f6c45287a20b1817e08d098d (diff)
downloadsamba-b93326b9689d0ad935eed35f7cf5201ad04ac1ff.tar.gz
s3-build: remove EXEEXT from Makefiles
As far as I am aware, we do not actually build on any platforms that require this. The last Stratos VOS release on ftp://ftp.stratus.com/vos/samba/samba.html was 3.0.5 Andrew Bartlett
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/SGI/idb.pl5
1 files changed, 0 insertions, 5 deletions
diff --git a/packaging/SGI/idb.pl b/packaging/SGI/idb.pl
index 529695b14b2..2383ff5b8d6 100755
--- a/packaging/SGI/idb.pl
+++ b/packaging/SGI/idb.pl
@@ -39,10 +39,6 @@ while (not eof(MAKEFILE)) {
$_ = <MAKEFILE>;
chomp;
last if /^# object file lists/ ;
- if (/^EXEEXT/) {
- /^.*=(.*)/;
- $EXEEXT = $1;
- }
if (/^srcdir/) {
/^.*=(.*)/;
$srcdir = $1;
@@ -367,7 +363,6 @@ sub get_line {
s/^\s*/ /;
substr($line,$cont,1) = $_;
}
- $line =~ s/\$\(EXEEXT\)/$EXEEXT/g;
$line =~ s/\$\(srcdir\)//g;
$line =~ s/\$\(builddir\)//g;
$line =~ s/\$\(\S*\)\s*//g;