diff options
author | jbj <devnull@localhost> | 2002-07-13 19:32:42 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-07-13 19:32:42 +0000 |
commit | fa1098b41069d66a3c7b6ba2bc07dba945ebc850 (patch) | |
tree | b9a577b76f8a13b3790f6bc95fa4d2f966d8175d | |
parent | 425a2d3783c62095bfa76f1b3d901b42069b1ab6 (diff) | |
download | librpm-tizen-fa1098b41069d66a3c7b6ba2bc07dba945ebc850.tar.gz librpm-tizen-fa1098b41069d66a3c7b6ba2bc07dba945ebc850.tar.bz2 librpm-tizen-fa1098b41069d66a3c7b6ba2bc07dba945ebc850.zip |
Use ${MAKE}, not make, for portability.
CVS patchset: 5552
CVS date: 2002/07/13 19:32:42
-rw-r--r-- | beecrypt/Makefile.am | 2 | ||||
-rw-r--r-- | rpmio/Makefile.am | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/beecrypt/Makefile.am b/beecrypt/Makefile.am index ae34f0bee..57b9837c9 100644 --- a/beecrypt/Makefile.am +++ b/beecrypt/Makefile.am @@ -63,7 +63,7 @@ EXTRA_DIST = BENCHMARKS BUGS CONTRIBUTORS Doxyfile.in Doxyheader README README.D .PHONY: beetest beetest: all - make -C tests beetest + ${MAKE} -C tests beetest ./tests/beetest beecrypt.lcd: Makefile.am ${libbeecrypt_la_SOURCES} ${pkginclude_HEADERS} ${noinst_HEADERS} diff --git a/rpmio/Makefile.am b/rpmio/Makefile.am index f730369a5..6f3ab295a 100644 --- a/rpmio/Makefile.am +++ b/rpmio/Makefile.am @@ -34,7 +34,7 @@ install-data-local: mv .librpmio.la librpmio.la $(top_builddir)/beecrypt/listobjs: - make -C $(top_builddir)/beecrypt listobjs + ${MAKE} -C $(top_builddir)/beecrypt listobjs .created: $(top_builddir)/beecrypt/listobjs for lo in $(BEECRYPTLOBJS); do \ diff --git a/tests/Makefile.am b/tests/Makefile.am index 86e9cf9b2..ae0e85367 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -8,7 +8,7 @@ SUBDIRS = hello-test check-recursive: ./usr/ ./bin ./var ./usr ./bin ./var: ../rpm - make -C .. DESTDIR=`pwd` install + ${MAKE} -C .. DESTDIR=`pwd` install cp rpmrc macros ./$(pkglibdir) rm -f ./@GZIPBIN@ if [ ! -d ./`dirname @GZIPBIN@` ] ; then mkdir -p ./`dirname @GZIPBIN@` ; fi |