You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2021/05/25 09:17:12 UTC

svn commit: r1890192 - in /apr/apr/branches/1.7.x: ./ Makefile.in

Author: michaelo
Date: Tue May 25 09:17:12 2021
New Revision: 1890192

URL: http://svn.apache.org/viewvc?rev=1890192&view=rev
Log:
Backport r1890191 from trunk:

Use portable make variables

The usage of '$<' with BSD make results in an empty variable, therefore
compilation fails.

Modified:
    apr/apr/branches/1.7.x/   (props changed)
    apr/apr/branches/1.7.x/Makefile.in

Propchange: apr/apr/branches/1.7.x/
------------------------------------------------------------------------------
  Merged /apr/apr/trunk:r1890191

Modified: apr/apr/branches/1.7.x/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.7.x/Makefile.in?rev=1890192&r1=1890191&r2=1890192&view=diff
==============================================================================
--- apr/apr/branches/1.7.x/Makefile.in (original)
+++ apr/apr/branches/1.7.x/Makefile.in Tue May 25 09:17:12 2021
@@ -133,7 +133,7 @@ etags:
 
 tools/gen_test_char@EXEEXT@: tools/gen_test_char.c
 	$(APR_MKDIR) tools
-	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $< -o $@
+	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) tools/gen_test_char.c -o $@
 
 include/private/apr_escape_test_char.h: tools/gen_test_char@EXEEXT@
 	$(APR_MKDIR) include/private