diff options
author | gerald <gerald@FreeBSD.org> | 2005-05-22 19:11:39 +0000 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2005-05-22 19:11:39 +0000 |
commit | 0e722e55e51b3a1e0b70c146e79eb6b2b42c3de1 (patch) | |
tree | 3438b34793329fe5ff30f35db7d6b132cdf1d13b /lang | |
parent | 1799ee7036d2271441ad5397cf61fe2a9b1bd460 (diff) | |
download | FreeBSD-ports-0e722e55e51b3a1e0b70c146e79eb6b2b42c3de1.zip FreeBSD-ports-0e722e55e51b3a1e0b70c146e79eb6b2b42c3de1.tar.gz |
Fix the handling of man pages on systems with an old version of Perl, once
and for all and forever.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc34/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/gcc34/Makefile b/lang/gcc34/Makefile index b9f9dd8..40b42da 100644 --- a/lang/gcc34/Makefile +++ b/lang/gcc34/Makefile @@ -126,7 +126,7 @@ post-install: # man pages can only be generated if Perl >= 5.6 is installed; # fake them otherwise. for mp in ${_MANPAGES}; do \ - ${TEST} -e ${mp} || ${TOUCH} ${TOUCH_FLAGS} ${mp}; \ + ${TEST} -e $${mp} || ${TOUCH} ${TOUCH_FLAGS} $${mp}; \ done .for f in c++ g77 gcc g++ cpp gcov ${CONFIGURE_TARGET}-gcc ${CONFIGURE_TARGET}-g++ gcj gcjh gij jv-scan jcf-dump jv-convert jar grepjar rmic rmiregistry # gij and jv-convert, for example, are not built on all platforms. |