summaryrefslogtreecommitdiffstats
path: root/kapptemplate
diff options
context:
space:
mode:
Diffstat (limited to 'kapptemplate')
-rw-r--r--kapptemplate/appframework/app.spec4
-rw-r--r--kapptemplate/kapptemplate.common2
-rw-r--r--kapptemplate/kapptemplate.in2
3 files changed, 4 insertions, 4 deletions
diff --git a/kapptemplate/appframework/app.spec b/kapptemplate/appframework/app.spec
index 8cd1be53..b0f3fd48 100644
--- a/kapptemplate/appframework/app.spec
+++ b/kapptemplate/appframework/app.spec
@@ -34,8 +34,8 @@ make -j$numprocs
make install-strip DESTDIR=\$RPM_BUILD_ROOT
cd $RPM_BUILD_ROOT
-tqfind . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > $RPM_BUILD_DIR/%{name}-master.list
-tqfind . -type f -o -type l | sed 's|^\.||' >> \$RPM_BUILD_DIR/%{name}-master.list
+find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > $RPM_BUILD_DIR/%{name}-master.list
+find . -type f -o -type l | sed 's|^\.||' >> \$RPM_BUILD_DIR/%{name}-master.list
%clean
rm -rf \$RPM_BUILD_DIR/%{name}-%{version}
diff --git a/kapptemplate/kapptemplate.common b/kapptemplate/kapptemplate.common
index a5a63a16..8cff2d60 100644
--- a/kapptemplate/kapptemplate.common
+++ b/kapptemplate/kapptemplate.common
@@ -299,7 +299,7 @@ function GetFileList
if [ -d "$DIRECTORY" ];
then
# FILES=`/bin/ls -1 -I "no-exe" -I*~ $DIRECTORY`;
- FILES=`cd $DIRECTORY; tqfind . ! -name "*~" -maxdepth 1 -type f -print | sed 's,^\./,,' | sort`;
+ FILES=`cd $DIRECTORY; find . ! -name "*~" -maxdepth 1 -type f -print | sed 's,^\./,,' | sort`;
if [ ! "$FILES" ];
then
diff --git a/kapptemplate/kapptemplate.in b/kapptemplate/kapptemplate.in
index 7490f94e..dde86d04 100644
--- a/kapptemplate/kapptemplate.in
+++ b/kapptemplate/kapptemplate.in
@@ -13,7 +13,7 @@
function LoadDefaults
{
# horrid hack to try and figure out what shell we are using
- # basically, if we can tqfind /usr/ucb/echo, then we are almost for sure
+ # basically, if we can find /usr/ucb/echo, then we are almost for sure
# NOT on a Linux system and probably 'echo "\c" works. if we don't
# find it, we'll assume that the shell is really bash.
if [ -f "/usr/ucb/echo" ];