blob: 07e4bf6ec91aef69f02e7acaf7c3216f19f63c81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Make sure the perl code is valid both with and without the backslashes.
Some make versions strip them, others don't.
--- glastree-1.04/Makefile
+++ glastree-1.04/Makefile
@@ -24,8 +24,8 @@
install:
@perl -e 'eval "use Date::Calc"; \
- print "Checking for prereq Date::Calc..."; \
- if ($$@) { print "\nThis program requires the Date::Calc module.\n"; exit 1; } \
+ print "Checking for prereq Date::Calc..."; if ($$@) { \
+ print "\nThis program requires the Date::Calc module.\n"; exit 1; } \
print " OK\n"; '
$(INSTALL) -d $(INSTROOT)/$(INSTBIN)
|