aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHuang Ying <ying.huang@intel.com>2009-09-23 09:36:01 +0800
committerHuang Ying <ying.huang@intel.com>2009-09-23 09:36:01 +0800
commitcb0b699c250586682101478c2c05a438fb354b52 (patch)
treeec278fe4981ec16d963d9d0d53f8ed13fa9578f7
parent24a858f297828e1f92d05bead269400a93477a45 (diff)
downloadaer-inject-cb0b699c250586682101478c2c05a438fb354b52.tar.gz
Fix space issue in Makefile
TAB instead of space should be used before commands in rules. Signed-off-by: Huang Ying <ying.huang@intel.com>
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cf8a967..7071bf5 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ depend: .depend
Makefile: .depend
install: aer-inject
- install -d $(DESTDIR)$(PREFIX)
- install aer-inject $(DESTDIR)$(PREFIX)
+ install -d $(DESTDIR)$(PREFIX)
+ install aer-inject $(DESTDIR)$(PREFIX)
include .depend