source: trunk/third/cns/dounifdef @ 8789

Revision 8789, 269 bytes checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r8788, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3# dounifdef file
4
5# find dir -type f \( -name '*akefile*' -o -name '*.c' \) -exec `pwd`/dounifdef {} \;
6
7unifdef -DNOENCRYPTION $1 > $1.unifdef
8if cmp $1 $1.unifdef > /dev/null ; then
9   rm $1.unifdef
10else
11   echo altered $1
12   rm $1
13   mv $1.unifdef $1
14fi
15
Note: See TracBrowser for help on using the repository browser.