head	1.1;
access;
symbols
	caudium_1_4_9:1.1
	caudium_1_4_8:1.1
	caudium_1_4_7:1.1
	caudium_1_4_6:1.1
	caudium_1_4_5:1.1
	caudium_1_4_4:1.1
	caudium_1_4_3:1.1
	caudium_1_4_2:1.1
	caudium_1_5_1:1.1
	caudium_1_4_1:1.1
	stable_1_4:1.1.0.2
	caudium_1_3_33:1.1
	caudium_1_3_32:1.1
	caudium_1_3_31:1.1
	caudium_1_3_30:1.1
	caudium_1_3_29:1.1
	caudium_1_3_19:1.1;
locks; strict;
comment	@# @;


1.1
date	2004.05.17.13.52.10;	author grendel;	state Exp;
branches;
next	;


desc
@@


1.1
log
@a hackety-hack workaround for another EPITA fuckup ("incompatibility a day
keeps productivity away"). Hail EPITA!
@
text
@#!/bin/sh

#
# This is a HORRIBLE hack, but it's the only way to remain compatible
# accross the various broken autoconf versions (and yes, the incompatible
# autoconf versions are all 2.x - there's a shitload of broken stuff
# between 2.53 and 2.59 - now go figure). Hail EPITA!
#
# $Id$
#

if [ -z "$1" ]; then
TOPDIR=.
else
TOPDIR="$1"
fi

#
# Relative to the topdir
FIXPERMS="server/start-caudium server/bin/install.pike"

for f in $FIXPERMS; do
  if [ -f $TOPDIR/$f ]; then
    echo Fixing permissions for $f
    chmod 755 $TOPDIR/$f
  fi
done

echo "Hail EPITA!"
@
