diff options
author | Gerald Carter <jerry@samba.org> | 2003-01-03 15:20:39 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-01-03 15:20:39 +0000 |
commit | 057f67f89189a116216bd35622d1e30a5309ac06 (patch) | |
tree | 8ac2931a3fd018f963c7097e29a47aeb122dd868 /packaging | |
parent | 634c54310c92c48dd4eceec602e230a021bdcfc5 (diff) | |
download | samba-057f67f89189a116216bd35622d1e30a5309ac06.tar.gz samba-057f67f89189a116216bd35622d1e30a5309ac06.tar.xz samba-057f67f89189a116216bd35622d1e30a5309ac06.zip |
patch from Andrew Bird to correct a few file/directory checks when building
(This used to be commit 4fb4e4bc5e1281afc69e61a642261562ac662312)
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/RedHat/makerpms.sh.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/RedHat/makerpms.sh.tmpl b/packaging/RedHat/makerpms.sh.tmpl index 88c0c1562d8..9d71452db8e 100644 --- a/packaging/RedHat/makerpms.sh.tmpl +++ b/packaging/RedHat/makerpms.sh.tmpl @@ -14,7 +14,7 @@ # if [ -r ~/.rpmmacros ]; then TOPDIR=`awk '/topdir/ {print $2}' < ~/.rpmmacros` - if [ z$TOPDIR <> "z" ]; then + if [ z$TOPDIR != "z" ]; then SPECDIR=${TOPDIR}/SPECS SRCDIR=${TOPDIR}/SOURCES fi |