Skip to content

Commit c2857f9

Browse files
authored
Merge pull request #1134 from cmuellner/permerrormsg
Makefile.in: Adjust permission error message
2 parents 50c1b73 + f286dde commit c2857f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ build-sim: $(SIM_STAMP)
203203
stamps/check-write-permission:
204204
mkdir -p $(INSTALL_DIR)/.test || \
205205
(echo "Sorry, you don't have permission to write to" \
206-
"'$(INSTALL_DIR)', use --prefix to specify" \
207-
"another path, or use 'sudo make' if you *REALLY* want to" \
208-
"install into '$(INSTALL_DIR)'" && exit 1)
206+
"'$(INSTALL_DIR)'. Please make sure that the location is " \
207+
"writable or use --prefix to specify another destination.'" \
208+
&& exit 1)
209209
rm -r $(INSTALL_DIR)/.test
210210
mkdir -p $(dir $@) && touch $@
211211

0 commit comments

Comments
 (0)